summaryrefslogtreecommitdiff
path: root/gnu/packages/xdisorg.scm
diff options
context:
space:
mode:
authorTanguy Le Carrour <tanguy@bioneland.org>2019-10-31 17:51:41 +0100
committerMathieu Othacehe <m.othacehe@gmail.com>2019-11-04 10:16:11 +0100
commitd258d9c7d222e6b64531c14293f41bd8d62ea4f7 (patch)
tree90486dd159e7f58999473bfc81d660b2c18cc9a8 /gnu/packages/xdisorg.scm
parentf02249b6bf7b0a42ab5bc198f8147d86c406b66f (diff)
downloadguix-patches-d258d9c7d222e6b64531c14293f41bd8d62ea4f7.tar
guix-patches-d258d9c7d222e6b64531c14293f41bd8d62ea4f7.tar.gz
gnu: scrot: Update to 1.2.
* gnu/packages/xdisorg.scm (scrot): Update to 1.2, [native-inputs]: Add autoconf-archive, [inputs]: Add libxcursor and libxfixes. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
Diffstat (limited to 'gnu/packages/xdisorg.scm')
-rw-r--r--gnu/packages/xdisorg.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 17dc16b44c..772e09d5b2 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -28,6 +28,7 @@
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
+;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -552,7 +553,7 @@ move windows, switch between desktops, etc.).")
(define-public scrot
(package
(name "scrot")
- (version "0.9")
+ (version "1.2")
(source
(origin
(method git-fetch)
@@ -562,14 +563,17 @@ move windows, switch between desktops, etc.).")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1dg0pnmk09p7zlbyxv7d40vf54amrv73y976ds5p7096x6lmlndy"))))
+ (base32 "08gkdby0ysx2mki57z81zlm7vfnq9c1gq692xw67cg5vv2p3320w"))))
(build-system gnu-build-system)
(native-inputs
`(("autoconf" ,autoconf)
+ ("autoconf-archive" ,autoconf-archive)
("automake" ,automake)))
(inputs
`(("giblib" ,giblib)
- ("libx11" ,libx11)))
+ ("libx11" ,libx11)
+ ("libXcursor" ,libxcursor)
+ ("libXfixes" ,libxfixes)))
(home-page "https://github.com/resurrecting-open-source-projects/scrot")
(synopsis "Command-line screen capture utility for X Window System")
(description