.
This commit is contained in:
parent
de26bd3369
commit
ff87418860
1 changed files with 15 additions and 9 deletions
|
@ -260,15 +260,21 @@ more.")
|
|||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(add-before 'configure 'generate-protocols
|
||||
(lambda _
|
||||
(setenv "CC" "gcc")
|
||||
(invoke "make" "protocols")))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(invoke "cmake" "--install" ".")))
|
||||
(delete 'check))))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'configure 'generate-protocols
|
||||
(lambda _
|
||||
(setenv "CC" "gcc")
|
||||
(invoke "make" "protocols")))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let* ((output (assoc-ref %outputs "out"))
|
||||
(out-bin (string-append output "/bin")))
|
||||
(use-modules (guix build utils))
|
||||
(invoke "ls")
|
||||
(install-file "./hyprpaper"
|
||||
out-bin))))
|
||||
(delete 'check))))
|
||||
(native-inputs
|
||||
(list gcc-13
|
||||
pkg-config))
|
||||
|
|
Loading…
Reference in a new issue