mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add shell-functools.
* gnu/packages/shellutils.scm (shell-functools): New variable.
This commit is contained in:
parent
446316cad5
commit
39bf4e0bad
1 changed files with 23 additions and 0 deletions
|
@ -316,3 +316,26 @@ (define-public hstr
|
||||||
bookmark your favourite commands.")
|
bookmark your favourite commands.")
|
||||||
(home-page "http://me.mindforger.com/projects/hh.html")
|
(home-page "http://me.mindforger.com/projects/hh.html")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public shell-functools
|
||||||
|
(package
|
||||||
|
(name "shell-functools")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/sharkdp/shell-functools.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0d6zzg7cxfrzwzh1wmpj7q85kz33sak6ac59ncsm6dlbin12h0hi"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "https://github.com/sharkdp/shell-functools/")
|
||||||
|
(synopsis "Functional programming tools for the shell")
|
||||||
|
(description "This package provides higher order functions like map,
|
||||||
|
filter, foldl, sort_by and take_while as simple command-line tools. Following
|
||||||
|
the UNIX philosophy, these commands are designed to be composed via pipes. A
|
||||||
|
large collection of functions such as basename, replace, contains or is_dir
|
||||||
|
are provided as arguments to these commands.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue