guix-commits
[Top][All Lists]
Advanced

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

04/07: gnu: pflask: Don't use unstable tarball.


From: guix-commits
Subject: 04/07: gnu: pflask: 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 8de377564e57c2615c9422f1c010617003a52162
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Jun 24 10:27:58 2020 +0300

    gnu: pflask: Don't use unstable tarball.
    
    * gnu/packages/linux.scm (pflask)[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 a56eb57..8f8c0a1 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3788,13 +3788,14 @@ particular the @code{perf} command.")
     (name "pflask")
     (version "0.2")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/ghedo/pflask/archive/v";
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/ghedo/pflask";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1g8fjj67dfkc2s0852l9vqi1pm61gp4rxbpzbzg780f5s5hd1fys"))))
+                "1jikjbhlxlqracnai3v9krzcgd2xwp0p4adw5n07yxc7b857damz"))))
     (build-system cmake-build-system)
     (arguments
      '(#:tests? #f)) ; no tests



reply via email to

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