diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 12:31:18 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 12:31:18 +0100 |
commit | 5cdbdc2b138b0dd6237f9116af894b9d7dbf429b (patch) | |
tree | 0f5126ef9280f49688f9bad267fd37f3f1f17a50 | |
parent | 2fef54fd64495148e0c546ef4ecaacf9503e62db (diff) | |
download | patches-5cdbdc2b138b0dd6237f9116af894b9d7dbf429b.tar patches-5cdbdc2b138b0dd6237f9116af894b9d7dbf429b.tar.gz |
gnu: par2cmdline: Fetch sources from git.
* gnu/packages/backup.scm (par2cmdline)[source]: Fetch from git.
-rw-r--r-- | gnu/packages/backup.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 52afcbc676..b81d790642 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com> +;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -30,6 +31,7 @@ (define-module (gnu packages backup) #:use-module (guix packages) #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix git-download) #:use-module (guix download) #:use-module (guix utils) #:use-module (guix build-system gnu) @@ -132,13 +134,14 @@ spying and/or modification by the server.") (name "par2cmdline") (version "0.8.0") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/Parchive/par2cmdline/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/Parchive/par2cmdline.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1jpshmmcr81mxly0md2rr231qz9c8c680bbvcmhh100dg9i4a6s6")))) + "0f1jsd5sw2wynjzi7yjqjaf13yhyjfdid91p8yh0jn32y03kjyrz")))) (native-inputs `(("automake" ,automake) ("autoconf" ,autoconf))) |