Archived
1
0
Fork 0

gnu: beep: Use G-expressions.

* gnu/packages/terminals.scm (beep)[arguments]:
Rewrite as G-expressions.
This commit is contained in:
Tobias Geerinckx-Rice 2022-05-08 02:00:01 +02:00
parent de15ca7af8
commit e6c3e7d741
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -58,6 +58,7 @@
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages)
@ -575,12 +576,12 @@ to all types of devices that provide serial consoles.")
(base32 "0dgrb5yg4ys1fa4hs95iz3m2yhryfzzw0j6g6yf6vhbys4ihcf40"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list (string-append "CC=" ,(cc-for-target))
(string-append "prefix=" (assoc-ref %outputs "out"))
(string-append "pkgdocdir=$(docdir)/" ,name "-" ,version))
(list #:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "prefix=" #$output)
(string-append "pkgdocdir=$(docdir)/" #$name "-" #$version))
#:phases
(modify-phases %standard-phases
#~(modify-phases %standard-phases
(delete 'configure) ; no configure script
(add-before 'check 'patch-tests
(lambda _