gnu: picocom: Update to 3.1.
* gnu/packages/terminals.scm (picocom): Update to 3.1.
This commit is contained in:
parent
130c12c9b9
commit
33238b5520
1 changed files with 5 additions and 4 deletions
|
@ -341,7 +341,7 @@ combining, and so on, with a simple interface.")
|
||||||
(define-public picocom
|
(define-public picocom
|
||||||
(package
|
(package
|
||||||
(name "picocom")
|
(name "picocom")
|
||||||
(version "2.2")
|
(version "3.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -350,15 +350,16 @@ combining, and so on, with a simple interface.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06b2ic34dnxc73cprc5imi3iamlhsv623sbg9vj5h5rvs586dwjx"))))
|
"1vvjydqf0ax47nvdyyl67jafw5b3sfsav00xid6qpgia1gs2r72n"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("CC=gcc")
|
`(#:make-flags '("CC=gcc")
|
||||||
#:tests? #f ; No tests
|
#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure) ; no configure script
|
||||||
(replace 'install
|
(replace 'install
|
||||||
|
;; The Makefile lacks an ‘install’ target.
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin"))
|
(bin (string-append out "/bin"))
|
||||||
|
|
Reference in a new issue