summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodion Goritskov <rodion.goritskov@gmail.com>2023-11-22 23:38:31 +0400
committerRodion Goritskov <rodion.goritskov@gmail.com>2023-11-22 23:38:31 +0400
commit8fe75f080e8a18a924117ea3dc4e2f632667558c (patch)
tree0da8a045bb3b015b96ac4498c7424aeec2f3bc8f
parent6f9552590bd52895d329023c730e990e504b65b1 (diff)
Remove clifm as it is merged to the upstream
-rw-r--r--rodion/packages/filemanagers.scm43
1 files changed, 0 insertions, 43 deletions
diff --git a/rodion/packages/filemanagers.scm b/rodion/packages/filemanagers.scm
deleted file mode 100644
index 135a839..0000000
--- a/rodion/packages/filemanagers.scm
+++ /dev/null
@@ -1,43 +0,0 @@
-(define-module (rodion packages filemanagers)
- #:use-module (guix packages)
- #:use-module (guix gexp)
- #:use-module (guix utils)
- #:use-module (guix git-download)
- #:use-module (guix build-system gnu)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (gnu packages readline)
- #:use-module (gnu packages acl)
- #:use-module (gnu packages linux))
-
-(define-public clifm
- (package
- (name "clifm")
- (version "1.15")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/leo-arch/clifm")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1r9pxlyn8jg0wmzbmbc71l42098lz5k32k6yid09yz6d0gaax7g1"))))
- (build-system gnu-build-system)
- (arguments
- `(#:make-flags
- (list
- (string-append "CC=" ,(cc-for-target))
- (string-append "PREFIX=" (assoc-ref %outputs "out")))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (delete 'build)
- (delete 'check))))
- (inputs
- (list readline
- acl
- libcap))
- (home-page "https://github.com/leo-arch/clifm")
- (synopsis "Command line file manager")
- (description "Clifm is a shell-like, text-based terminal file manager that sits on the command line.")
- (license license:gpl2)))