gnu: surf: Add 'dmenu' and 'xprop' to 'inputs'.
'dmenu' and 'xprop' are necessary to open a new URL in surf. * gnu/packages/suckless.scm (surf)[inputs]: Add dmenu and xprop. [arguments]: Add 'set-dmenu-and-xprop-file-name' phase to patch the paths to the 'dmenu' and 'xprop' binaries in surf's configuration file. Signed-off-by: Kei Kebreau <kei@openmailbox.org>
This commit is contained in:
parent
909de139e7
commit
45321beb7d
1 changed files with 12 additions and 3 deletions
|
@ -255,11 +255,20 @@ (define-public surf
|
|||
(string-append "PREFIX=" %output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(delete 'configure)
|
||||
;; Use the right file name for dmenu and xprop.
|
||||
(add-before 'build 'set-dmenu-and-xprop-file-name
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "config.def.h"
|
||||
(("dmenu") (string-append (assoc-ref inputs "dmenu") "/bin/dmenu"))
|
||||
(("xprop") (string-append (assoc-ref inputs "xprop") "/bin/xprop")))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("glib-networking" ,glib-networking)
|
||||
`(("dmenu" ,dmenu)
|
||||
("glib-networking" ,glib-networking)
|
||||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||||
("webkitgtk" ,webkitgtk/gtk+-2)))
|
||||
("webkitgtk" ,webkitgtk/gtk+-2)
|
||||
("xprop" ,xprop)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "http://surf.suckless.org/")
|
||||
|
|
Loading…
Reference in a new issue