guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: sl: Don't use unstable tarball.


From: Tobias Geerinckx-Rice
Subject: 05/05: gnu: sl: Don't use unstable tarball.
Date: Tue, 21 Aug 2018 01:17:20 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 49dcfb50458e295e6284ad9b989e4cac402021f0
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Aug 21 07:15:51 2018 +0200

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

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index 05e1dab..87706d2 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -19,7 +19,7 @@
 (define-module (gnu packages toys)
   #:use-module (gnu packages ncurses)
   #:use-module (guix build-system gnu)
-  #:use-module (guix download)
+  #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages))
 
@@ -29,12 +29,13 @@
     (version "5.02")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/mtoyoda/"; name
-                           "/archive/" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mtoyoda/sl.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0fjnnnxxq7zh9bm3yzbj84fgap0rhblxi2m10br83747gxsrcn8y"))))
+        (base32 "1zrfd71zx2px2xpapg45s8xvi81xii63yl0h60q72j71zh4sif8b"))))
     (build-system gnu-build-system)
     (inputs
      `(("ncurses" ,ncurses)))



reply via email to

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