mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: alsa-scarlett-gui: Use ungexp.
This is a follow-up to commit 5d81aa8613
.
* gnu/packages/music.scm (alsa-scarlett-gui)[arguments]: Use #$output and
THIS-PACKAGE-INPUT instead of ASSOC-REF.
Change-Id: If56af33e361a215c63c5e004b81d2d0e84a2dd56
This commit is contained in:
parent
4d3c18b8fe
commit
d41e8843f6
1 changed files with 3 additions and 4 deletions
|
@ -234,12 +234,11 @@ (define-public alsa-scarlett-gui
|
|||
#$(cc-for-target) " -o")))
|
||||
(chdir "src")))
|
||||
(add-after 'install 'wrap-program
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(wrap-program (string-append (assoc-ref outputs "out")
|
||||
"/bin/alsa-scarlett-gui")
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(wrap-program (string-append #$output "/bin/alsa-scarlett-gui")
|
||||
;; For GtkFileChooserDialog.
|
||||
`("GSETTINGS_SCHEMA_DIR" =
|
||||
(,(string-append (assoc-ref inputs "gtk")
|
||||
(,(string-append #$(this-package-input "gtk")
|
||||
"/share/glib-2.0/schemas"))))))
|
||||
(delete 'configure))))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue