guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/11: gnu: fdupes: Update to 2.1.2.


From: guix-commits
Subject: 04/11: gnu: fdupes: Update to 2.1.2.
Date: Sat, 29 Aug 2020 22:57:14 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 5a9f2ae19b9d50cb8d0d94612c7bd074ce85f0c5
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Aug 30 03:11:02 2020 +0200

    gnu: fdupes: Update to 2.1.2.
    
    * gnu/packages/admin.scm (fdupes): Update to 2.1.2.
    [source]: Use bootstrapped release tarball.
    [arguments]: Delete field.
    [inputs]: Add ncurses and pcre2.
---
 gnu/packages/admin.scm | 23 +++++++++--------------
 1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 5d2c056..a7ecc37 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -2133,24 +2133,19 @@ degradation and failure.")
 (define-public fdupes
   (package
     (name "fdupes")
-    (version "1.6.1")
+    (version "2.1.2")
     (source
      (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/adrianlopezroche/fdupes";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
+       (method url-fetch)
+       (uri (string-append "https://github.com/adrianlopezroche/fdupes/";
+                           "releases/download/v" version "/"
+                           "fdupes-" version ".tar.gz"))
        (sha256
-        (base32 "19b6vqblddaw8ccw4sn0qsqzbswlhrz8ia6n4m3hymvcxn8skpz9"))))
+        (base32 "1g9p50xhi2sp0hqxml4w2k0kq9jv988q2yxm347z5349dlxvap6d"))))
     (build-system gnu-build-system)
-    (arguments
-     '(#:phases (modify-phases %standard-phases
-                  (delete 'configure))
-       #:tests? #f ; no 'check' target
-       #:make-flags (list "CC=gcc"
-                          (string-append "PREFIX="
-                                         (assoc-ref %outputs "out")))))
+    (inputs
+     `(("ncurses" ,ncurses)
+       ("pcre2" ,pcre2)))
     (home-page "https://github.com/adrianlopezroche/fdupes";)
     (synopsis "Identify duplicate files")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]