me
/
guix
Archived
1
0
Fork 0

gnu: cbatticon: Don't use unstable tarball.

* gnu/packages/admin.scm (cbatticon)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2018-12-23 10:35:26 +01:00
parent 807a30999d
commit d8d910e6e1
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 11 additions and 10 deletions

View File

@ -2091,23 +2091,24 @@ produce uniform output across heterogeneous networks.")
(package (package
(name "cbatticon") (name "cbatticon")
(version "1.6.8") (version "1.6.8")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://github.com/valr/" (method git-fetch)
name "/archive/" version ".tar.gz")) (uri (git-reference
(sha256 (url "https://github.com/valr/cbatticon.git")
(base32 (commit version)))
"185lzvaijvyq7y8r7dvizhri0rf9lpc1anfgbbn4lznr1fr3z7rn")) (sha256
(file-name (string-append name "-" version ".tar.gz")))) (base32 "16g26vin1693dbdr9qsnw36fdchx394lp79gvp7gcbw0w1ny9av6"))
(file-name (git-file-name name version))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; no tests `(#:tests? #f ; no tests
#:make-flags #:make-flags
(list (string-append "PREFIX=" (assoc-ref %outputs "out")) (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
"CC=gcc") "CC=gcc")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure)))) ; no configure script (delete 'configure)))) ; no configure script
(inputs (inputs
`(("gtk+" ,gtk+) `(("gtk+" ,gtk+)
("gettext" ,gettext-minimal) ("gettext" ,gettext-minimal)