gnu: joycond: Small refactoring.
* gnu/packages/games.scm (joycond)[arguments]<#:phases>: Use (assoc-ref outputs "out") instead of %output.
This commit is contained in:
parent
f44d7f68e6
commit
692cce52ca
1 changed files with 12 additions and 8 deletions
|
@ -1504,20 +1504,24 @@ automata. The following features are available:
|
|||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"07z86yp27vxc0b44jgvf1vpa69rh3wdvd1xbzcsrj3f32743pv5a"))))
|
||||
(base32 "07z86yp27vxc0b44jgvf1vpa69rh3wdvd1xbzcsrj3f32743pv5a"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ;no test suite
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-bin-location
|
||||
(lambda* _
|
||||
(substitute* "CMakeLists.txt"
|
||||
(("/lib/udev/rules.d") (string-append %output "/lib/udev/rules.d"))
|
||||
(("/etc/systemd/system") (string-append %output "/etc/systemd/system"))
|
||||
(("/etc/modules-load.d") (string-append %output "/etc/modules-load.d"))
|
||||
(("/usr/bin") (string-append %output "/bin"))))))))
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(substitute* "CMakeLists.txt"
|
||||
(("/lib/udev/rules.d")
|
||||
(string-append out "/lib/udev/rules.d"))
|
||||
(("/etc/systemd/system")
|
||||
(string-append out "/etc/systemd/system"))
|
||||
(("/etc/modules-load.d")
|
||||
(string-append out "/etc/modules-load.d"))
|
||||
(("/usr/bin")
|
||||
(string-append out "/bin")))))))))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("eudev" ,eudev)
|
||||
|
|
Reference in a new issue