guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: procenv: Don't use unstable tarball.


From: guix-commits
Subject: 03/07: gnu: procenv: Don't use unstable tarball.
Date: Wed, 24 Jun 2020 03:55:56 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit cfaf5bccb9d5a8aa80b1c8655545623f814a2ec4
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Jun 24 10:26:20 2020 +0300

    gnu: procenv: Don't use unstable tarball.
    
    * gnu/packages/linux.scm (procenv)[source]: Download using git-fetch.
---
 gnu/packages/linux.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 3b53114..a56eb57 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -6317,12 +6317,13 @@ the MTP device as a file system.")
    (version "0.51")
    (source
     (origin
-     (method url-fetch)
-     (uri (string-append "https://github.com/jamesodhunt/procenv/archive/";
-                         version ".tar.gz"))
-     (file-name (string-append name "-" version ".tar.gz"))
+     (method git-fetch)
+     (uri (git-reference
+            (url "https://github.com/jamesodhunt/procenv";)
+            (commit version)))
+     (file-name (git-file-name name version))
      (sha256
-      (base32 "1javw97yw0qvjmj14js8vw6nsfyf2xc0kfiyq5f2hsp0553w2cdq"))))
+      (base32 "1ilrsw1rc85w29mkbkmm5n5w427gapv43yrjzvkb4kc9xhscgdjn"))))
    (build-system gnu-build-system)
    (arguments `(#:configure-flags '("--disable-silent-rules")))
    (native-inputs `(("groff" ,groff) ; for tests



reply via email to

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