[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/10: gnu: libnsl: Do not use unstable tarball.
From: |
guix-commits |
Subject: |
09/10: gnu: libnsl: Do not use unstable tarball. |
Date: |
Sat, 15 Jun 2019 04:52:18 -0400 (EDT) |
mbakke pushed a commit to branch staging
in repository guix.
commit fd641a23f5438bb289041d9b738388ad26c5d343
Author: Marius Bakke <address@hidden>
Date: Sat Jun 15 09:18:51 2019 +0200
gnu: libnsl: Do not use unstable tarball.
* gnu/packages/onc-rpc.scm (libnsl)[source]: Switch to GIT-FETCH.
---
gnu/packages/onc-rpc.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/onc-rpc.scm b/gnu/packages/onc-rpc.scm
index 3f67d91..8f66b07 100644
--- a/gnu/packages/onc-rpc.scm
+++ b/gnu/packages/onc-rpc.scm
@@ -23,6 +23,7 @@
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages gettext)
@@ -105,13 +106,14 @@ universal addresses.")
(name "libnsl")
(version "1.2.0")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/thkukuk/libnsl/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/thkukuk/libnsl.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "1y6kmxmv1difzvdhx7grqzw0j2v2b74mg4kjb803m8jcgkqqx8m5"))))
+ "1chzqhcgh0yia9js8mh92cmhyka7rh32ql6b3mgdk26n94dqzs8b"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
- branch staging updated (ed8d3f3 -> af847bd), guix-commits, 2019/06/15
- 01/10: gnu: cups-filters: Update to 1.25.0., guix-commits, 2019/06/15
- 02/10: gnu: libsigc++: Update to 2.10.2., guix-commits, 2019/06/15
- 03/10: gnu: imagemagick: Update to 6.9.10-49., guix-commits, 2019/06/15
- 06/10: gnu: Sphinx: Update to 2.1.1., guix-commits, 2019/06/15
- 07/10: gnu: speexdsp: Update to 1.2.0., guix-commits, 2019/06/15
- 04/10: gnu: python-markupsafe: Update to 1.1.1., guix-commits, 2019/06/15
- 10/10: gnu: xorg-server-for-tests: Update to 1.20.5., guix-commits, 2019/06/15
- 05/10: gnu: python-mako: Update to 1.0.12., guix-commits, 2019/06/15
- 08/10: gnu: libtirpc: Update to 1.1.4., guix-commits, 2019/06/15
- 09/10: gnu: libnsl: Do not use unstable tarball.,
guix-commits <=