diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-27 12:04:30 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-27 12:08:19 +0100 |
commit | 3ac3c0d636dfcd00d4cde0476d8004bc7f2c48e0 (patch) | |
tree | 915646b78754c0a45a266b395a0b65dd70c2b711 | |
parent | 751eab891979308698637aa07ad230d5bddf3cca (diff) |
gnu: qdirstat: Improve package.
* gnu/packages/disk.scm (qdirstat): Apply G-expressions, shift order of
the fields.
Change-Id: I05a1df8d1b9d1106b64b465aeb2ee4a326ee50f3
-rw-r--r-- | gnu/packages/disk.scm | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index f75d84a2a6..6a1ef2fe99 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -1802,24 +1802,22 @@ wrapper for disk usage querying and visualisation.") (sha256 (base32 "04vpdlwk01kgmc4r5rnrmrgd4sf2kfh1rjzb2rjkfxdd4pbghsy9")))) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'configure - (lambda* (#:key outputs #:allow-other-keys) - (system* "qmake" - (string-append "INSTALL_PREFIX=" - (assoc-ref outputs "out"))))) - (add-after 'install 'wrap - (lambda* (#:key inputs outputs #:allow-other-keys) - (wrap-program (string-append - (assoc-ref outputs "out") - "/bin/qdirstat-cache-writer") - `("PERL5LIB" ":" prefix - (,(string-append - (assoc-ref inputs "perl-uri-escape") - "/lib/perl5/site_perl"))))))))) (build-system qt-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'configure + (lambda _ + (system* "qmake" (string-append "INSTALL_PREFIX=" #$output)))) + (add-after 'install 'wrap + (lambda _ + (wrap-program (string-append #$output + "/bin/qdirstat-cache-writer") + `("PERL5LIB" ":" prefix + (,(string-append + #$(this-package-input "perl-uri-escape") + "/lib/perl5/site_perl"))))))))) (inputs (list bash-minimal perl @@ -1827,11 +1825,11 @@ wrapper for disk usage querying and visualisation.") qtbase-5 qtwayland-5 zlib)) + (home-page "https://github.com/shundhammer/qdirstat") (synopsis "Storage utilisation visualization tool") (description "QDirStat is a graphical application to show where your disk space has gone and to help you to clean it up.") - (home-page "https://github.com/shundhammer/qdirstat") (license license:gpl2))) (define-public nwipe |