diff options
author | Eric Bavier <bavier@cray.com> | 2018-01-04 14:15:07 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2018-04-12 22:27:19 -0500 |
commit | 1ca0ac1e8080457cea374025a3ab07e477d41dc2 (patch) | |
tree | 52430d78d8f7e4e7a68835a43471ba3e5dbad4bc /gnu/packages/admin.scm | |
parent | 6a03ccf4a1f541ff167805c4b7656c21dba10f3e (diff) | |
download | guix-1ca0ac1e8080457cea374025a3ab07e477d41dc2.tar.gz |
gnu: Add fasd.
* gnu/packages/admin.scm (fasd): New variable.
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 6a7bed3892..d055b4bb50 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1646,6 +1646,35 @@ you use the most from the command line and allows you to \"jump\" to frequently used directories by typing only a small pattern.") (license license:gpl3+))) +(define-public fasd + (package + (name "fasd") + (version "1.0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/clvv/fasd.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1awi71jdv3mhjrmar2d4z1i90kn7apd7aq1w31sh6w4yibz9kiyj")))) + (build-system gnu-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (delete 'configure)) ;no configuration + #:tests? #f ;no tests + #:make-flags (list (string-append "PREFIX=" %output)))) + (home-page "https://github.com/clvv/fasd") + (synopsis "Quick access to files and directories for shells") + (description + "Fasd (pronounced similar to \"fast\") is a command-line productivity +booster. Fasd offers quick access to files and directories for POSIX shells. +It is inspired by tools like autojump, z, and v. Fasd keeps track of files +and directories you have accessed so that you can quickly reference them in +the command line.") + (license license:x11))) + (define-public iftop (package (name "iftop") |