gnu: picocom: Fetch sources from git.
* gnu/packages/terminals.scm (picocom)[source]: Fetch from git.
This commit is contained in:
parent
cf8478e5d5
commit
773c18086b
1 changed files with 6 additions and 6 deletions
|
@ -330,14 +330,14 @@ combining, and so on, with a simple interface.")
|
||||||
(name "picocom")
|
(name "picocom")
|
||||||
(version "2.2")
|
(version "2.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/npat-efault/picocom"
|
(url "https://github.com/npat-efault/picocom.git")
|
||||||
"/archive/" version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1knl6dglnrynx1fhy21nylw56i1q3dkizkgxzkq42mb7ilah8f9y"))))
|
"06b2ic34dnxc73cprc5imi3iamlhsv623sbg9vj5h5rvs586dwjx"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("CC=gcc")
|
`(#:make-flags '("CC=gcc")
|
||||||
|
|
Reference in a new issue