guix-commits
[Top][All Lists]
Advanced

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

02/16: gnu: duperemove: Don't use unstable tarball.


From: guix-commits
Subject: 02/16: gnu: duperemove: Don't use unstable tarball.
Date: Tue, 12 Feb 2019 23:43:38 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit acc6eb89c81678706c5bc2b3fd1baa0cd604e6b1
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Feb 12 15:15:45 2019 +0100

    gnu: duperemove: Don't use unstable tarball.
    
    * gnu/packages/disk.scm (duperemove)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/disk.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index 354f00d..5575644 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -479,15 +479,15 @@ a card with a smaller capacity than stated.")
   (package
     (name "duperemove")
     (version "0.11.1")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/markfasheh/duperemove/archive/v";
-                    version ".tar.gz"))
-              (sha256
-               (base32
-                "1j1alh3blbj1wg1zmkpwrf40nggwg8xbgsk2mnn9albymwdwkhvm"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/markfasheh/duperemove.git";)
+             (commit (string-append "v" version))))
+       (sha256
+        (base32 "1scz76pvpljvrpfn176125xwaqwyy4pirlm11sc9spb2hyzknw2z"))
+       (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))



reply via email to

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