mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
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>
This commit is contained in:
parent
f02249b6bf
commit
d258d9c7d2
1 changed files with 7 additions and 3 deletions
|
@ -28,6 +28,7 @@
|
||||||
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||||
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
|
;;; Copyright © 2019 Kyle Andrews <kyle.c.andrews@gmail.com>
|
||||||
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
|
;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
|
||||||
|
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -552,7 +553,7 @@ (define-public wmctrl
|
||||||
(define-public scrot
|
(define-public scrot
|
||||||
(package
|
(package
|
||||||
(name "scrot")
|
(name "scrot")
|
||||||
(version "0.9")
|
(version "1.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -562,14 +563,17 @@ (define-public scrot
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1dg0pnmk09p7zlbyxv7d40vf54amrv73y976ds5p7096x6lmlndy"))))
|
(base32 "08gkdby0ysx2mki57z81zlm7vfnq9c1gq692xw67cg5vv2p3320w"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
|
("autoconf-archive" ,autoconf-archive)
|
||||||
("automake" ,automake)))
|
("automake" ,automake)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("giblib" ,giblib)
|
`(("giblib" ,giblib)
|
||||||
("libx11" ,libx11)))
|
("libx11" ,libx11)
|
||||||
|
("libXcursor" ,libxcursor)
|
||||||
|
("libXfixes" ,libxfixes)))
|
||||||
(home-page "https://github.com/resurrecting-open-source-projects/scrot")
|
(home-page "https://github.com/resurrecting-open-source-projects/scrot")
|
||||||
(synopsis "Command-line screen capture utility for X Window System")
|
(synopsis "Command-line screen capture utility for X Window System")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue