summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2017-02-24 11:19:18 +0100
committerMarius Bakke <mbakke@fastmail.com>2017-02-24 11:47:27 +0100
commite1c014d7f3cc22a40917a112e9a5203a5c67a4ea (patch)
treeeb509cacc4c2dbf97e7fc216713211bc60a6678d /gnu
parent4fb9c83c544df07d7673495d58a941a87c632f6b (diff)
downloadguix-patches-e1c014d7f3cc22a40917a112e9a5203a5c67a4ea.tar
guix-patches-e1c014d7f3cc22a40917a112e9a5203a5c67a4ea.tar.gz
gnu: slop: Update to 5.3.27.
* gnu/packages/xdisorg.scm (slop): Update to 5.3.27. [arguments]: Remove #:configure-flags. [inputs]: Add LIBXRENDER.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/xdisorg.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 8aa4c38db4..672902e0be 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -438,7 +438,7 @@ of the screen selected by mouse.")
(define-public slop
(package
(name "slop")
- (version "5.3.21")
+ (version "5.3.27")
(source (origin
(method url-fetch)
(uri (string-append
@@ -447,14 +447,14 @@ of the screen selected by mouse.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "0qlyksiaknd40jabra0fv71k4qc4y6dgxihjmmv9a1g4hdmmqklb"))))
+ "0yid1qd5l0g22cmm3mmmbg639404i7069nw5g843llb5yfc54bs0"))))
(build-system cmake-build-system)
(arguments
- '(#:configure-flags '("-DCMAKE_CXX_FLAGS=-std=gnu++11")
- #:tests? #f)) ; no "check" target
+ '(#:tests? #f)) ; no "check" target
(inputs
`(("glm" ,glm)
("libxext" ,libxext)
+ ("libxrender" ,libxrender)
("mesa" ,mesa)))
(home-page "https://github.com/naelstrof/slop")
(synopsis "Select a region and print its bounds to stdout")