.
This commit is contained in:
parent
9f93c50f38
commit
c3130f4896
1 changed files with 4 additions and 3 deletions
|
@ -22,10 +22,11 @@
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:modules '((guix build utils))
|
#:modules '((guix build utils))
|
||||||
#:builder #~(let ((source (assoc-ref %build-inputs "source"))
|
#:builder #~(let* ((source (assoc-ref %build-inputs "source"))
|
||||||
(output (assoc-ref %outputs "out")))
|
(output (assoc-ref %outputs "out"))
|
||||||
|
(out-bin (string-append output "/bin")))
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
(install-file (string-append source "/process-compose") output))))
|
(install-file (string-append source "/process-compose") out-bin))))
|
||||||
(home-page "https://f1bonacc1.github.io/process-compose")
|
(home-page "https://f1bonacc1.github.io/process-compose")
|
||||||
(synopsis "Scheduler and orchestrator for processes")
|
(synopsis "Scheduler and orchestrator for processes")
|
||||||
(description "Process Compose is a simple and flexible scheduler and orchestrator
|
(description "Process Compose is a simple and flexible scheduler and orchestrator
|
||||||
|
|
Loading…
Reference in a new issue