diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-06 19:12:03 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-06 19:50:41 +0100 |
commit | cc808564b8168b5756f23c979d66c19edcc3fc31 (patch) | |
tree | 02a1d33c95ffe582b14df328679ce5e7d5352033 /gnu/packages | |
parent | b3a36ab55b654cd8dbaad222a19a5ffe8b9cf18c (diff) | |
download | guix-cc808564b8168b5756f23c979d66c19edcc3fc31.tar.gz guix-cc808564b8168b5756f23c979d66c19edcc3fc31.zip |
gnu: scrot: Update to 1.5.
* gnu/packages/xdisorg.scm (scrot): Update to 1.5.
[inputs]: Remove unused libxcursor. Add libxext.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xdisorg.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 2e09be525f..56ac53edec 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -700,7 +700,7 @@ move windows, switch between desktops, etc.).") (define-public scrot (package (name "scrot") - (version "1.4") + (version "1.5") (source (origin (method git-fetch) @@ -710,8 +710,7 @@ move windows, switch between desktops, etc.).") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 - "12xq6glg70icwsvbnfw9gm4dahlbnrc7b6adpd0mpf89h4sj2gds")))) + (base32 "0x64b7xqi5cbq29pb8s8r2kzbxaday1f5k0j70n3s2p7sahjxy72")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) @@ -720,8 +719,8 @@ move windows, switch between desktops, etc.).") (inputs `(("giblib" ,giblib) ("libx11" ,libx11) - ("libXcursor" ,libxcursor) ("libxcomposite" ,libxcomposite) + ("libxext" ,libxext) ("libXfixes" ,libxfixes))) (home-page "https://github.com/resurrecting-open-source-projects/scrot") (synopsis "Command-line screen capture utility for X Window System") |