guix-commits
[Top][All Lists]
Advanced

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

02/26: gnu: nethogs: Don't use unstable tarball.


From: guix-commits
Subject: 02/26: gnu: nethogs: Don't use unstable tarball.
Date: Mon, 25 May 2020 18:20:00 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 52dd58b56dbcc7610a26275fe9782151d664bb68
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Mon May 25 19:08:41 2020 +0200

    gnu: nethogs: Don't use unstable tarball.
    
    * gnu/packages/networking.scm (nethogs)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
    [arguments]: Don't try (and fail) to determine the version using git.
---
 gnu/packages/networking.scm | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 0b6c6e7..9f7548d 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1724,21 +1724,23 @@ the bandwidth, loss, and other parameters.")
   (package
     (name "nethogs")
     (version "0.8.6")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/raboof/nethogs/archive/v";
-                                  version ".tar.gz"))
-              (sha256
-               (base32
-                "1875q9hx48g68pika7n51an879v3s10ir4sf95z6ggnl6m91sz1i"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/raboof/nethogs";)
+             (commit (string-append "v" version))))
+       (sha256
+        (base32 "0sn1sdp86akwlm4r1vmkxjjl50c0xaisk91bbz57z7kcsaphxna9"))
+       (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (inputs
      `(("libpcap" ,libpcap)
        ("ncurses" ,ncurses)))
     (arguments
      `(#:make-flags `("CC=gcc"
-                      ,(string-append "PREFIX=" %output))
+                      ,(string-append "PREFIX=" %output)
+                      ,(string-append "VERSION=" ,version))
        #:phases
        (modify-phases %standard-phases
          (delete 'configure))))         ; no ./configure script.



reply via email to

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