summaryrefslogtreecommitdiff
path: root/rodion/packages/filemanagers.scm
blob: d774519e6ec92eb2ad85b1516d6a117f05bc07d7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(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.14.6")
   (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
	      "15qrgj4kzxkc4lp3rpqvyk9ilc4nckrpiskg7y7p6bqr23n8chyh"))))
   (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 "TUI file manager")
   (description "Clifm is a shell-like, text-based terminal file manager that sits on the command line.

Though fully-featured, powerful, and extensible, it is not so much about features, but about design, about the way in which you interact with your file system.")
   (license license:gpl2)))