me
/
guix
Archived
1
0
Fork 0

gnu: libsrtp: Don't use unstable tarball.

* gnu/packages/telephony.scm (libsrtp)[source]: Download using
git-fetch.
master
Efraim Flashner 2019-11-13 22:25:47 +02:00
parent 40f243017e
commit 1c956faaf5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 5 deletions

View File

@ -243,13 +243,14 @@ internet.")
(name "libsrtp")
(version "2.2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/cisco/libsrtp/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/cisco/libsrtp")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"02x5l5h2nq6f9gq1bmgz5v9jmnqaab51p8aldglng1z7pjbp9za4"))))
"1ac7xs1djb03j131f1gmqyfmrplblid9qqyxahs0shdy707r5ll6"))))
(native-inputs
`(("psmisc" ,psmisc) ;some tests require 'killall'
("procps" ,procps)))