guix-commits
[Top][All Lists]
Advanced

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

07/13: gnu: fntsample: Don't use unstable tarball.


From: guix-commits
Subject: 07/13: gnu: fntsample: Don't use unstable tarball.
Date: Tue, 23 Jun 2020 10:13:59 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 405b9ba0482652edb8ae3814149647ed32130c9f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jun 23 16:08:15 2020 +0300

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

diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index ab9bd43..4b4d4c7 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -831,14 +831,14 @@ work well with other GTK+ desktop environments.")
     (name "fntsample")
     (version "5.3")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/eugmes/fntsample/archive/release/";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/eugmes/fntsample";)
+                     (commit (string-append "release/" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0awp4dh1g40ivzvm5xqlvcpcdw1vplrx3drjmbylr62y185vbs74"))))
+                "02rx3gp7k472304vhjwb129nw10a29s4nvgs7i2m6bpjhlk2xgs5"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f ; There are no tests.



reply via email to

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