diff options
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index d9d2f59c84..237f0e02a8 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -269,7 +269,8 @@ usual file attributes can be checked for inconsistencies.") "daemontools-" version ".tar.gz")) (sha256 (base32 - "07scvw88faxkscxi91031pjkpccql6wspk4yrlnsbrrb5c0kamd5")))) + "07scvw88faxkscxi91031pjkpccql6wspk4yrlnsbrrb5c0kamd5")) + (patches (search-patches "daemontools-gcc14.patch")))) (build-system gnu-build-system) (arguments (list #:tests? #f ;; No tests as far as I can tell. @@ -2689,16 +2690,20 @@ command.") (build-system qt-build-system) (arguments (list + #:tests? #f ; no tests ;; Make sure the (rarely updated) package 'imagemagick/stable' ;; does not end up in the closure. #:disallowed-references (list imagemagick/stable) - #:test-target "check" + #:modules '((guix build qt-build-system) + ((guix build gnu-build-system) #:prefix gnu:) + (guix build utils)) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "wpa_supplicant/wpa_gui-qt4"))) (replace 'configure (lambda _ (invoke "qmake" "wpa_gui.pro"))) + (replace 'build (assoc-ref gnu:%standard-phases 'build)) (add-after 'build 'build-icons (lambda _ ;; Inkscape complains (but works) without a writable $HOME. @@ -4637,7 +4642,7 @@ information tool.") (define-public fastfetch (package (name "fastfetch") - (version "2.48.1") + (version "2.49.0") (source (origin (method git-fetch) @@ -4646,7 +4651,7 @@ information tool.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1gzpmc7vx5dqfjbga6facfqxybgb1hps6h2y9blngjwsskicsi7v")) + (base32 "1mka26ga6jmrimkl93xf97pg8y1k3b41vsb3ds61wi6n257daprk")) (modules '((guix build utils))) (snippet '(begin (delete-file-recursively "src/3rdparty"))))) |