guix-commits
[Top][All Lists]
Advanced

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

13/15: gnu: chez-scmutils: Don't use unstable tarball.


From: guix-commits
Subject: 13/15: gnu: chez-scmutils: Don't use unstable tarball.
Date: Sat, 16 Feb 2019 14:52:36 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 9b469e2e3a5597f97faf7e56bf0186c4ae781d06
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sat Feb 16 16:49:44 2019 +0100

    gnu: chez-scmutils: Don't use unstable tarball.
    
    * gnu/packages/chez.scm (chez-scmutils)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/chez.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm
index f775813..c45085b 100644
--- a/gnu/packages/chez.scm
+++ b/gnu/packages/chez.scm
@@ -569,14 +569,16 @@ required to port the program 'Scmutils' to Chez Scheme.")
     (home-page "https://github.com/fedeinthemix/chez-scmutils";)
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append home-page "/archive/v" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
        (sha256
-        (base32 "1a5j61pggaiwl1gl6m038rcy5n8r2sj5nyjmz86jydx97mm5i8hj"))
-       (file-name (string-append name "-" version ".tar.gz"))))
+        (base32 "0lb05wlf8qpgg8y0gdsyaxg1nbfx1qbaqdjvygrp64ndn8fnhq7l"))
+       (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (inputs
-     `(("chez-srfi" ,chez-srfi)))      ; for tests
+     `(("chez-srfi" ,chez-srfi)))       ; for tests
     (native-inputs
      `(("chez-scheme" ,chez-scheme)))
     (propagated-inputs
@@ -584,7 +586,7 @@ required to port the program 'Scmutils' to Chez Scheme.")
        ("chez-srfi" ,chez-srfi)))
     (arguments
      `(#:make-flags ,(chez-make-flags name version)
-       #:tests? #f ; no test suite
+       #:tests? #f                      ; no test suite
        #:phases
        (modify-phases %standard-phases
          (replace 'configure ,chez-configure)



reply via email to

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