From b1fd7ccd589a5f28b998296cbeb255bead9eb75d Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Thu, 27 Dec 2018 09:25:45 +0100 Subject: [PATCH] gnu: Add slurp. * gnu/packages/image.scm (slurp): New variable. --- gnu/packages/image.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 08a9f86be..f95eae238 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1595,3 +1595,30 @@ identical visual appearance.") (description "grim can create screenshots from a Wayland compositor.") ;; MIT license. (license license:expat))) + +(define-public slurp + (package + (name "slurp") + (version "1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/slurp.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03igv8r8n772xb0y7whhs1pa298l3d94jbnknaxpwp2n4fi04syb")))) + (build-system meson-build-system) + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs `(("cairo" ,cairo) + ("scdoc" ,scdoc) + ("wayland" ,wayland) + ("wayland-protocols" ,wayland-protocols))) + (home-page "https://github.com/emersion/slurp") + (synopsis "Select a region in a Wayland compositor and print it to the +standard output") + (description "Slurp can select a region in a Wayland compositor and print it +to the standard output. It works well together with grim.") + ;; MIT license. + (license license:expat))) 2.20.1