1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: abduco: Cleanup definition.

* gnu/packages/screen.scm (abduco): Cleanup.
<source>[origin]: Use git-fetch rather than url-fetch.
<arguments>: Convert to list of G-Expressions.
[#:phases]: No longer delete ‘check’, instead set…
[#:tests]: … to #f.

Change-Id: Ic86ed18953716b1e76f2f31ccaf37ecb1bf53183
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Anderson Torres
2025-08-01 23:20:27 -03:00
committed by Liliana Marie Prikler
parent 879b1ee39d
commit 1b4d566250

View File

@@ -50,21 +50,26 @@
(package (package
(name "abduco") (name "abduco")
(version "0.6") (version "0.6")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://www.brain-dump.org/projects/abduco/abduco-" (uri (git-reference
version ".tar.gz")) (url "https://github.com/martanne/abduco")
(sha256 (commit (string-append "v" version))))
(base32 (file-name (git-file-name name version))
"1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9")))) (sha256
(base32
"14cqllh36mvnhwdnl63mrhxlr6a0rq192cmr19ac6cvycicdk6i2"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:make-flags (list (string-append "CC=" ,(cc-for-target)) (list
(string-append "PREFIX=" (assoc-ref %outputs "out"))) #:tests? #f ; No test suite
#:phases (modify-phases %standard-phases #:make-flags
(delete 'configure) #~(list (string-append "CC=" #$(cc-for-target))
(delete 'check)))) ; no test suite (string-append "PREFIX=" #$output))
#:phases
#~(modify-phases %standard-phases
(delete 'configure))))
(synopsis "Session management in a clean and simple way") (synopsis "Session management in a clean and simple way")
(description "abduco provides session management i.e. it allows programs to (description "abduco provides session management i.e. it allows programs to
be run independently from their controlling terminal. That is, programs can be run independently from their controlling terminal. That is, programs can