guix-commits
[Top][All Lists]
Advanced

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

05/20: gnu: powerstat: Fetch sources from Git.


From: guix-commits
Subject: 05/20: gnu: powerstat: Fetch sources from Git.
Date: Mon, 29 Nov 2021 19:09:14 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit c1546d8a684cb91b8b69975895f65d85f5e056bb
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Nov 30 00:55:07 2021 +0100

    gnu: powerstat: Fetch sources from Git.
    
    * gnu/packages/linux.scm (powerstat)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/linux.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 8a14e4e..9b4934c 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1740,11 +1740,13 @@ It provides the commands @code{powercap-info} and 
@code{powercap-set}.")
     (version "0.02.26")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://kernel.ubuntu.com/~cking/tarballs/";
-                           "powerstat/powerstat-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ColinIanKing/powerstat";)
+             (commit (string-append "V" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "18m85k83hryj05vix63fay1hh0sb9h87hy5r7g1dqg2y9i8lzgxk"))))
+        (base32 "0jp9dvwlz4svg28vgrgvvbi72ca9mkfczy0f05vvsgpxjz7hlfnj"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags



reply via email to

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