gnu: bemenu: Update to 0.6.10, use new package style.
* gnu/packages/xdisorg.scm (bemenu): Update to 0.6.10. [arguments]: Use G-expressions. Use #$output instead of assoc-ref. [inputs]: Remove labels. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
807c0658c8
commit
8fbbb8fc31
1 changed files with 20 additions and 19 deletions
|
@ -313,7 +313,7 @@ used to further tweak the behaviour of the different profiles.")
|
||||||
(define-public bemenu
|
(define-public bemenu
|
||||||
(package
|
(package
|
||||||
(name "bemenu")
|
(name "bemenu")
|
||||||
(version "0.6.4")
|
(version "0.6.10")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -322,27 +322,28 @@ used to further tweak the behaviour of the different profiles.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "18vplvnymgc6576sdh84lm5rlwyb9d038plqpjs638hzskf4q577"))))
|
(base32 "0i2pv3qnb0l2ryvj9ycf9d5rng6yfk0kpjkq8hy6g956672wdzx6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
(list
|
||||||
#:make-flags (list ,(string-append "CC=" (cc-for-target))
|
#:tests? #f
|
||||||
"CFLAGS=-O2 -fPIC"
|
#:make-flags
|
||||||
(string-append "LDFLAGS=-Wl,-rpath="
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
(assoc-ref %outputs "out") "/lib")
|
"CFLAGS=-O2 -fPIC"
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib")
|
||||||
#:phases
|
(string-append "PREFIX=" #$output))
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'configure)))) ; no configure script
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)))) ; no configure script
|
||||||
(inputs
|
(inputs
|
||||||
`(("cairo" ,cairo)
|
(list cairo
|
||||||
("libx11" ,libx11)
|
libx11
|
||||||
("libxkbcomon" ,libxkbcommon)
|
libxkbcommon
|
||||||
("libxinerama" ,libxinerama)
|
libxinerama
|
||||||
("ncurses" ,ncurses)
|
ncurses
|
||||||
("pango" ,pango)
|
pango
|
||||||
("wayland" ,wayland)
|
wayland
|
||||||
("wayland-protocols" ,wayland-protocols)))
|
wayland-protocols))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list doxygen pkg-config))
|
(list doxygen pkg-config))
|
||||||
(home-page "https://github.com/Cloudef/bemenu")
|
(home-page "https://github.com/Cloudef/bemenu")
|
||||||
|
|
Reference in a new issue