diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-26 12:05:35 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-26 12:09:48 +0100 |
commit | fa1241aae8ceb45bb298aedf20b8fe7f2eb386ba (patch) | |
tree | c80b8db3725c8a5e5080c0e902380b21d494e7f1 | |
parent | 91a2f2629be43a4aa288e39a49a8afea21a3ef7f (diff) |
gnu: shell-functools: Fix indentation.
* gnu/packages/shellutils.scm (shell-functools): Fix indentation.
Change-Id: Idface1cc989e4928e92d07105d3d2ca9ff64b598
-rw-r--r-- | gnu/packages/shellutils.scm | 49 |
1 files changed, 25 insertions, 24 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index fb744a3c32..5afc30e3eb 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -909,30 +909,31 @@ bookmark your favourite commands.") ;; test suite, use the latest commit. (let ((commit "530e3b6f098c41869f9dc47d1a3005e12ce300c0") (revision "0")) - (package - (name "shell-functools") - (version (git-version "0.3.0" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/sharkdp/shell-functools") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0l23n5anppxds4678qnh84mykbdb7qxyjrxxjzm7kin7izfzczpa")))) - (build-system pyproject-build-system) - (native-inputs - (list python-pytest - python-hatchling)) - (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)))) + (package + (name "shell-functools") + (version (git-version "0.3.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sharkdp/shell-functools") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0l23n5anppxds4678qnh84mykbdb7qxyjrxxjzm7kin7izfzczpa")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-hatchling)) + (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)))) (define-public rig (package |