[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: withershins: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
02/09: gnu: withershins: Don't use unstable tarball. |
Date: |
Sun, 3 Nov 2019 01:57:19 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 3dd14ea73cb00280b9ca5d5ea32f25651c52b8db
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Nov 3 06:38:04 2019 +0100
gnu: withershins: Don't use unstable tarball.
* gnu/packages/code.scm (withershins)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/code.scm | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 62bca01..f0943c6 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -320,15 +320,15 @@ features that are not supported by the standard
@code{stdio} implementation.")
(package
(name "withershins")
(version "0.1")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/cameronwhite/withershins/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32
- "08z3lyvswx7sad10637vfpwglbcbgzzcpfihw0x8lzr74f3b70bh"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cameronwhite/withershins.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1cviqvbbcwljm1zx12j6511hazr3kscwrvcyifrkfi4fpy5z985m"))))
(build-system cmake-build-system)
(arguments
`(#:out-of-source? #f
- branch master updated (73282c7 -> b82bd90), guix-commits, 2019/11/03
- 08/09: gnu: colormake: Use HTTPS home page., guix-commits, 2019/11/03
- 07/09: gnu: colormake: Don't use unstable tarball., guix-commits, 2019/11/03
- 06/09: gnu: lci: Don't use unstable tarball., guix-commits, 2019/11/03
- 02/09: gnu: withershins: Don't use unstable tarball.,
guix-commits <=
- 01/09: gnu: withershins: Build., guix-commits, 2019/11/03
- 05/09: gnu: makefile2graph: Don't use unstable tarball., guix-commits, 2019/11/03
- 03/09: gnu: jrnl: Don't use unstable tarball., guix-commits, 2019/11/03
- 09/09: gnu: spectrwm: Don't use unstable tarball., guix-commits, 2019/11/03
- 04/09: gnu: bash-tap: Don't use unstable tarball., guix-commits, 2019/11/03