gnu: me-cleaner: Don't use unstable tarball.
* gnu/packages/flashing-tools.scm (me-cleaner)[source]: Download using git-fetch.
This commit is contained in:
parent
8d449c25b6
commit
db9b61bf61
1 changed files with 6 additions and 5 deletions
|
@ -417,13 +417,14 @@ Management Engine (ME). You need to @code{sudo rmmod mei_me} and
|
||||||
(name "me-cleaner")
|
(name "me-cleaner")
|
||||||
(version "1.2")
|
(version "1.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/corna/me_cleaner/"
|
(uri (git-reference
|
||||||
"archive/v" version ".tar.gz"))
|
(url "https://github.com/corna/me_cleaner.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0hdnay1ai0r6l69z63jkiz6yfwdsqc2mrfyj77hgadv7xxxqm6na"))
|
"1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Reference in a new issue