diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-01 19:09:47 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-01 19:26:06 +0300 |
commit | e5c7ad9c0e83c7ef5d654644fe133d99c264c0a5 (patch) | |
tree | 134b83e0752c76677bf65a68905a97023d1586bf | |
parent | 0dfd0cc5ed8954d5d1ad420aaa0982c00168faab (diff) | |
download | guix-e5c7ad9c0e83c7ef5d654644fe133d99c264c0a5.tar.gz guix-e5c7ad9c0e83c7ef5d654644fe133d99c264c0a5.zip |
gnu: detox: Move the package definition up.
* gnu/packages/admin.scm (detox): Move the package definition up to improve
alphabetical sorting of packages in the module.
Change-Id: I04b3555f3e27af89ab49e9848a63caea521b27ad
-rw-r--r-- | gnu/packages/admin.scm | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 5eb3d022c2..21365499e5 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -298,6 +298,31 @@ services.") (license license:public-domain) (home-page "https://cr.yp.to/daemontools.html"))) +(define-public detox + (package + (name "detox") + (version "2.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dharple/detox") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0qix3ipvj5sn66id57k6gzilnz4f19jgwn4d72hj1jzi3m9f9k1h")))) + (build-system gnu-build-system) + (native-inputs + (list autoconf automake bison flex pkg-config)) + (home-page "https://github.com/dharple/detox") + (synopsis "Clean up file names") + (description + "Detox is a program that renames files to make them easier to work with +under Unix and related operating systems. Spaces and various other unsafe +characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1) +characters can be replaced as well, as can UTF-8 characters.") + (license license:bsd-3))) + (define-public hetznercloud-cli (package (name "hetznercloud-cli") @@ -2913,31 +2938,6 @@ metrics, verification of memory and computational operations, and considerably more stress mechanisms.") (license license:gpl2+))) -(define-public detox - (package - (name "detox") - (version "2.0.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/dharple/detox") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0qix3ipvj5sn66id57k6gzilnz4f19jgwn4d72hj1jzi3m9f9k1h")))) - (build-system gnu-build-system) - (native-inputs - (list autoconf automake bison flex pkg-config)) - (home-page "https://github.com/dharple/detox") - (synopsis "Clean up file names") - (description - "Detox is a program that renames files to make them easier to work with -under Unix and related operating systems. Spaces and various other unsafe -characters (such as \"$\") get replaced with \"_\". ISO 8859-1 (Latin-1) -characters can be replaced as well, as can UTF-8 characters.") - (license license:bsd-3))) - (define-public tree (package (name "tree") |