mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: pulsemixer: Don't use unstable tarball.
* gnu/packages/pulseaudio.scm (pulsemixer)[source]: Download using git-fetch.
This commit is contained in:
parent
870b9ff95f
commit
fa6abb0135
1 changed files with 6 additions and 5 deletions
|
@ -287,13 +287,14 @@ (define-public pulsemixer
|
||||||
(name "pulsemixer")
|
(name "pulsemixer")
|
||||||
(version "1.4.0")
|
(version "1.4.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/GeorgeFilipkin/"
|
(uri (git-reference
|
||||||
"pulsemixer/archive/" version ".tar.gz"))
|
(url "https://github.com/GeorgeFilipkin/pulsemixer")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1lpad90ifr2xfldyf39sbwx1v85rif2gm9w774gwwpjv53zfgk1g"))))
|
"0l5zawv36d46sj3k31k5w6imnnxzyn62r83wdhr7fp5mi3ls1h5x"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue