diff options
author | Rutger Helling <rhelling@mykolab.com> | 2018-12-20 12:54:19 +0100 |
---|---|---|
committer | Rutger Helling <rhelling@mykolab.com> | 2018-12-20 12:55:58 +0100 |
commit | 444c4c08ef823a0f0ea2ef83c0bc6171b8d85132 (patch) | |
tree | 9aecd4be2d3ab2aa3af24a8796cdf27f89372f82 /gnu | |
parent | 122db9a6cae5625c7cc48dd519a1a976fed95193 (diff) | |
download | guix-444c4c08ef823a0f0ea2ef83c0bc6171b8d85132.tar.gz |
gnu: grim: Fix indentation.
* gnu/packages/image.scm (grim): Fix indentation.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/image.scm | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 3971cc7ec8..e4bcd6a274 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -1577,25 +1577,25 @@ identical visual appearance.") (define-public grim (package - (name "grim") - (version "1.0") - (source - (origin - (method url-fetch) - (uri (string-append "https://github.com/emersion/grim/archive/v" version - ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 "0xkk5nqyp1px0sxz4asmchznc0q39wdx1b67ql741k8aj815km0f")))) - (build-system meson-build-system) - (native-inputs `(("pkg-config" ,pkg-config))) - (inputs `(("cairo" ,cairo) - ("libjpeg-turbo" ,libjpeg-turbo) - ("scdoc" ,scdoc) - ("wayland" ,wayland) - ("wayland-protocols" ,wayland-protocols))) - (home-page "https://github.com/emersion/grim") - (synopsis "Create screenshots from a Wayland compositor") - (description "grim can create screenshots from a Wayland compositor.") - ;; MIT license. - (license license:expat))) + (name "grim") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/emersion/grim/archive/v" version + ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xkk5nqyp1px0sxz4asmchznc0q39wdx1b67ql741k8aj815km0f")))) + (build-system meson-build-system) + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs `(("cairo" ,cairo) + ("libjpeg-turbo" ,libjpeg-turbo) + ("scdoc" ,scdoc) + ("wayland" ,wayland) + ("wayland-protocols" ,wayland-protocols))) + (home-page "https://github.com/emersion/grim") + (synopsis "Create screenshots from a Wayland compositor") + (description "grim can create screenshots from a Wayland compositor.") + ;; MIT license. + (license license:expat))) |