(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)))