mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: dotconf: Fetch sources from git.
* gnu/packages/textutils.scm (dotconf)[source]: Fetch from git.
This commit is contained in:
parent
7a52d0e075
commit
08bc7f2665
1 changed files with 6 additions and 6 deletions
|
@ -568,14 +568,14 @@ (define-public dotconf
|
||||||
(name "dotconf")
|
(name "dotconf")
|
||||||
(version "1.3")
|
(version "1.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/williamh/dotconf/archive/v"
|
(url "https://github.com/williamh/dotconf.git")
|
||||||
version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0lsnh0yaw44psmx59hq94cj1932gscp5h8d3cnh05l0svr0cy7kz"))))
|
"1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments `(#:tests? #f)) ; FIXME maketest.sh does not work.
|
(arguments `(#:tests? #f)) ; FIXME maketest.sh does not work.
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue