summaryrefslogtreecommitdiff
path: root/gnu/packages/shellutils.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-26 12:05:35 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-26 12:09:48 +0100
commitfa1241aae8ceb45bb298aedf20b8fe7f2eb386ba (patch)
treec80b8db3725c8a5e5080c0e902380b21d494e7f1 /gnu/packages/shellutils.scm
parent91a2f2629be43a4aa288e39a49a8afea21a3ef7f (diff)
gnu: shell-functools: Fix indentation.
* gnu/packages/shellutils.scm (shell-functools): Fix indentation. Change-Id: Idface1cc989e4928e92d07105d3d2ca9ff64b598
Diffstat (limited to 'gnu/packages/shellutils.scm')
-rw-r--r--gnu/packages/shellutils.scm49
1 files changed, 25 insertions, 24 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index fb744a3c324..5afc30e3eb0 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -909,30 +909,31 @@ bookmark your favourite commands.")
909 ;; test suite, use the latest commit. 909 ;; test suite, use the latest commit.
910 (let ((commit "530e3b6f098c41869f9dc47d1a3005e12ce300c0") 910 (let ((commit "530e3b6f098c41869f9dc47d1a3005e12ce300c0")
911 (revision "0")) 911 (revision "0"))
912 (package 912 (package
913 (name "shell-functools") 913 (name "shell-functools")
914 (version (git-version "0.3.0" revision commit)) 914 (version (git-version "0.3.0" revision commit))
915 (source (origin 915 (source (origin
916 (method git-fetch) 916 (method git-fetch)
917 (uri (git-reference 917 (uri (git-reference
918 (url "https://github.com/sharkdp/shell-functools") 918 (url "https://github.com/sharkdp/shell-functools")
919 (commit commit))) 919 (commit commit)))
920 (file-name (git-file-name name version)) 920 (file-name (git-file-name name version))
921 (sha256 921 (sha256
922 (base32 922 (base32
923 "0l23n5anppxds4678qnh84mykbdb7qxyjrxxjzm7kin7izfzczpa")))) 923 "0l23n5anppxds4678qnh84mykbdb7qxyjrxxjzm7kin7izfzczpa"))))
924 (build-system pyproject-build-system) 924 (build-system pyproject-build-system)
925 (native-inputs 925 (native-inputs
926 (list python-pytest 926 (list python-pytest
927 python-hatchling)) 927 python-hatchling))
928 (home-page "https://github.com/sharkdp/shell-functools/") 928 (home-page "https://github.com/sharkdp/shell-functools/")
929 (synopsis "Functional programming tools for the shell") 929 (synopsis "Functional programming tools for the shell")
930 (description "This package provides higher order functions like map, 930 (description
931filter, foldl, sort_by and take_while as simple command-line tools. Following 931 "This package provides higher order functions like map,filter, foldl,
932the UNIX philosophy, these commands are designed to be composed via pipes. A 932sort_by and take_while as simple command-line tools. Following the UNIX
933large collection of functions such as basename, replace, contains or is_dir 933philosophy, these commands are designed to be composed via pipes. A large
934are provided as arguments to these commands.") 934collection of functions such as basename, replace, contains or is_dir are
935 (license license:expat)))) 935provided as arguments to these commands.")
936 (license license:expat))))
936 937
937(define-public rig 938(define-public rig
938 (package 939 (package