gnu: dotconf: Fetch sources from git.

* gnu/packages/textutils.scm (dotconf)[source]: Fetch from git.
This commit is contained in:
Ricardo Wurmus 2018-11-11 11:37:01 +01:00
parent 7a52d0e075
commit 08bc7f2665
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -568,14 +568,14 @@ (define-public dotconf
(name "dotconf")
(version "1.3")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/williamh/dotconf/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/williamh/dotconf.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0lsnh0yaw44psmx59hq94cj1932gscp5h8d3cnh05l0svr0cy7kz"))))
"1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7"))))
(build-system gnu-build-system)
(arguments `(#:tests? #f)) ; FIXME maketest.sh does not work.
(native-inputs