;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015, 2021 Ludovic Courtès ;;; Copyright © 2016, 2018 Ricardo Wurmus ;;; Copyright © 2016, 2017, 2018, 2020 Efraim Flashner ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2020 Leo Famulari ;;; Copyright © 2018 Thorsten Wilms ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2021, 2022 Vinicius Monego ;;; Copyright © 2022 Maxim Cournoyer ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages gimp) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix utils) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system gnu) #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system meson) #:use-module (gnu packages) #:use-module (gnu packages algebra) #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages build-tools) #:use-module (gnu packages documentation) #:use-module (gnu packages fontutils) #:use-module (gnu packages freedesktop) #:use-module (gnu packages graphviz) #:use-module (gnu packages pkg-config) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) #:use-module (gnu packages gnome) #:use-module (gnu packages graphics) #:use-module (gnu packages image) #:use-module (gnu packages ghostscript) #:use-module (gnu packages compression) #:use-module (gnu packages xml) #:use-module (gnu packages linux) #:use-module (gnu packages maths) #:use-mod2023-02-05services: mpd: Fix serialization procedure for list-of-string....This is a followup to commit 5c5f0fc1135ff15f9c4adfc5f27eadd9a592b5d1 * gnu/services/audio.scm (mpd-serialize-list-of-string): Fix serialization procedure. Signed-off-by: Leo Famulari <leo@famulari.name> Bruno Victal 2023-02-05services: Add mympd-service-type....* gnu/services/audio.scm (mympd-service-type): New variable. * gnu/tests/audio.scm (%test-mympd): New variable. * doc/guix.texi: Document it. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Bruno Victal 2023-02-05services: mpd: Do not hardcode environment variables....Services should not expect for XDG_RUNTIME_DIR to be set. Inferring from the past comment, this seemed to resolve an issue when the service was launched with an _interactive_ user-account, which tends to have this variable set by the login-manager. This is not the case for system accounts and setting this variable results in PulseAudio (launched by the same system user) failing to start since it attempts to use a nonexistent directory. Ideally, this service should have a home-service counterpart but the old behavior can be emulated by setting the environment-variables field to: (environment-variables (list (string-append "XDG_RUNTIME_DIR=/run/user/" (number->string (passwd:uid (getpwnam "myuser")))))) * gnu/services/audio.scm (mpd-configuration)[environment-variables]: New field. (mpd-shepherd-service)[start]: Use new field. * doc/guix.texi (Audio Services)[Music Player Daemon]: Document it. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Bruno Victal 2023-02-05services: mpd: Refactor MPD service....Refactor mpd-service-type to support additional mpd.conf directives and move activation-service-extension into service constructor. * gnu/services/audio.scm (mpd-plugin, mpd-partition): New records. (mpd-serialize-boolean): Alias to and integrate logic into... (mpd-serialize-field): ... this. (mpd-serialize-list-of-string): New variable. (mpd-plugin?, mpd-partition?, list-of-string?, list-of-symbol?) (list-of-mpd-plugin?, list-of-mpd-partition?) (list-of-mpd-plugin-or-output?, port?): New variables. (mpd-file-name, mpd-service-activation): Remove variables. (mpd-configuration) [package, group, shepherd-requirement, log-file, log-level, music-directory] [playlist-directory, endpoints, database, partitions, neighbors, inputs] [archive-plugins, input-cache-size, decoders, resampler, filters] [playlist-plugins, extra-options]: New fields. [music-dir, playlist-dir, address]: Deprecate shorthand fields. [db-file, state-file, sticker-file, port, outputs]: Change admissible type. (mpd-shepherd-service) [actions]: New shepherd actions: 'reopen' and 'configuration'. [requirement]: Splice with 'shepherd-requirement' field. [start]: Use 'package' field. Remove #:log-file parameter. Move activation-service extension into constructor. (mpd-accounts): Honor user and group names from configuration. (mpd-log-rotation): New procedure. (mpd-service-type)[extensions]: Add rottlog-service-type extension. Remove activation-service-type extension. (mpd-output-name, mpd-output-type, mpd-output-enabled?, mpd-output-format) (mpd-output-tags?, mpd-output-always-on?, mpd-output-mixer-type) (mpd-output-replay-gain-handler, mpd-output-extra-options) (mpd-plugin-plugin, mpd-plugin-name, mpd-plugin-enabled?) (mpd-plugin-extra-options) (mpd-partition-name, mpd-partition-extra-options) (mpd-configuration-package, mpd-configuration-user) (mpd-configuration-group, mpd-configuration-shepherd-requirement) (mpd-configuration-log-file, mpd-configuration-log-level) (mpd-configuration-music-directory, mpd-configuration-music-dir) (mpd-configuration-playlist-directory, mpd-configuration-playlist-dir) (mpd-configuration-db-file, mpd-configuration-state-file) (mpd-configuration-sticker-file, mpd-configuration-default-port) (mpd-configuration-endpoints, mpd-configuration-address) (mpd-configuration-database, mpd-configuration-partitions) (mpd-configuration-neighbors, mpd-configuration-inputs) (mpd-configuration-archive-plugins, mpd-configuration-input-cache-size) (mpd-configuration-decoders, mpd-configuration-resampler) (mpd-configuration-filters, mpd-configuration-outputs) (mpd-configuration-playlist-plugins, mpd-configuration-extra-options): Export accessors. * doc/guix.texi (Audio Services)[Music Player Daemon]: Update documentation. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Bruno Victal 2023-02-05services: mpd: Rewrite using 'define-configuration'....* gnu/services/audio.scm (mpd-configuration, mpd-output): Rewrite using define-configuration. (uglify-field-name, mpd-serialize-field, mpd-serialize-alist) (mpd-serialize-number, mpd-serialize-boolean, mpd-serialize-list-of-mpd-output) (mpd-serialize-configuration): New procedure. (list-of-mpd-output?): New predicate. (mpd-config->file, mpd-output->string): Remove procedure. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Bruno Victal 2023-02-03services: nar-herder: Add cached compression support....* gnu/services/guix.scm (<nar-herder-cached-compression-configuration>): New record type. (nar-herder-configuration-cached-compressions, nar-herder-configuration-cached-compression-min-uses, nar-herder-configuration-cached-compression-workers, nar-herder-configuration-cached-compression-nar-source, nar-herder-cached-compression-configuration, nar-herder-cached-compression-configuration?, nar-herder-cached-compression-configuration-type, nar-herder-cached-compression-configuration-level, nar-herder-cached-compression-configuration-directory, nar-herder-cached-compression-configuration-directory-max-size): New procedures. * doc/guix.texi (Guix Services): Document this. Christopher Baines gdk-pixbuf" ,gdk-pixbuf) ("gexiv2" ,gexiv2) ("jasper" ,jasper) ("libjpeg" ,libjpeg-turbo) ("libnsgif" ,libnsgif) ("libpng" ,libpng) ("libraw" ,libraw) ("librsvg" ,librsvg) ("libspiro" ,libspiro) ("libtiff" ,libtiff) ("libwebp" ,libwebp) ("maxflow" ,maxflow) ("openexr" ,openexr-2) ("pango" ,pango) ("poppler" ,poppler) ("sdl2" ,sdl2))) (native-inputs (list `(,glib "bin") ; for gtester gobject-introspection intltool pkg-config vala)) (home-page "https://gegl.org") (synopsis "Graph based image processing framework") (description "GEGL (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers.") ;; The library itself is licensed under LGPL while the sample commandline ;; application and GUI binary gegl is licensed under GPL. (license (list license:lgpl3+ license:gpl3+)))) (define-public gimp (package (name "gimp") (version "2.10.32") (source (origin (method url-fetch) (uri (string-append "https://download.gimp.org/pub/gimp/v" (version-major+minor version) "/gimp-" version ".tar.bz2")) (sha256 (base32 "09csp2d8bzf012n7hvbbwngwr9phv3rnip768qdwqpdgah2wf59z")))) (build-system gnu-build-system) (outputs '("out" "doc")) ; 9 MiB of gtk-doc HTML (arguments (list #:configure-flags #~(list (string-append "--with-html-dir=" #$output "/share/gtk-doc/html") ;; Prevent the build system from running 'gtk-update-icon-cache' ;; which is not needed during the build because Guix runs it at ;; profile creation time. "ac_cv_path_GTK_UPDATE_ICON_CACHE=true" ;; Disable automatic network request on startup to check for ;; version updates. "--disable-check-update" ;; Only Python 2 is supported; disable it. "--disable-python" ;; ./configure requests not to annoy upstream with packaging bugs. "--with-bug-report-url=https://bugs.gnu.org/guix"))) (inputs (list atk babl gegl gexiv2 glib glib-networking gtk+-2 libjpeg-turbo libmypaint libtiff libwebp mypaint-brushes-1.3 libexif ;optional, EXIF + XMP support ghostscript ;optional, EPS + PS support lcms ;optional, color management libheif ;optional, HEIF + AVIF support libmng ;optional, MNG support librsvg ;optional, SVG support libxcursor ;optional, Mouse Cursor support openexr-2 ;optional, EXR support openjpeg ;optional, JPEG 2000 support poppler ;optional, PDF support poppler-data)) ;optional, PDF support (native-inputs (list desktop-file-utils `(,glib "bin") ;for glib-compile-resources and gdbus-codegen intltool pkg-config)) (home-page "https://www.gimp.org") (synopsis "GNU Image Manipulation Program") (description "GIMP is an application for image manipulation tasks such as photo retouching, composition and authoring. It supports all common image formats as well as specialized ones. It features a highly customizable interface that is extensible via a plugin system.") (license license:gpl3+))) ; some files are lgplv3 (define-public gimp-fourier (package (name "gimp-fourier") (version "0.4.3-2") (source (origin (method url-fetch) (uri (string-append "http://registry.gimp.org/files/fourier-" version ".tar.gz")) (sha256 (base32 "1rpacyad678lqgxa3hh2n0zpg4azs8dpa8q079bqsl12812k9184")))) (build-system gnu-build-system) (arguments `(#:tests? #f ;no tests #:phases (modify-phases %standard-phases ;; FIXME: The gegl package only installs "gegl-0.4.pc", but ;; "gimp-2.0.pc" requires "gegl-0.3.pc", so we just copy it. (replace 'configure (lambda* (#:key inputs #:allow-other-keys) (mkdir-p "tmppkgconfig") (copy-file (search-input-file inputs "/lib/pkgconfig/gegl-0.4.pc") "tmppkgconfig/gegl-0.3.pc") (setenv "PKG_CONFIG_PATH" (string-append "tmppkgconfig:" (or (getenv "PKG_CONFIG_PATH") ""))) #t)) (add-after 'unpack 'set-prefix (lambda* (#:key outputs #:allow-other-keys) ;; gimptool-2.0 does not allow us to install to any target ;; directory. (let ((target (string-append (assoc-ref outputs "out") "/lib/gimp/" (car (string-split ,(package-version gimp) #\.)) ".0/plug-ins"))) (substitute* "Makefile" (("\\$\\(PLUGIN_INSTALL\\) fourier") (string-append "cp fourier " target))) (mkdir-p target)) #t))))) (inputs (list fftw gimp ;; needed by gimp-2.0.pc gdk-pixbuf gegl cairo glib ;; needed by gimpui-2.0.pc gtk+-2)) (native-inputs (list pkg-config)) (home-page "https://www.lprp.fr/gimp_plugin_en/#fourier") (synopsis "GIMP plug-in to edit image in fourier space") (description "This package provides a simple plug-in to apply the fourier transform on an image, allowing you to work with the transformed image inside GIMP. You can draw or apply filters in fourier space and get the modified image with an inverse fourier transform.") (license license:gpl3+))) (define-public libmypaint (package (name "libmypaint") (version "1.6.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/mypaint/libmypaint/" "releases/download/v" version "/libmypaint-" version ".tar.xz")) (sha256 (base32 "0priwpmc7dizccqvn21ig6d649bprl3xl1hmjj7nddznjgr585vl")))) (build-system gnu-build-system) (native-inputs (list intltool pkg-config)) ;; As needed by 'libmypaint.pc'. (propagated-inputs (list json-c gobject-introspection)) (inputs (list glib)) (synopsis "Artistic brushes library") (description "Libmypaint, also called \"brushlib\", is a library for making brushstrokes which is used by MyPaint and GIMP.") (home-page "http://mypaint.org") (license license:isc))) (define-public mypaint-brushes (package (name "mypaint-brushes") (version "2.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mypaint/mypaint-brushes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0kcqz13vzpy24dhmrx9hbs6s7hqb8y305vciznm15h277sabpmw9")))) (build-system gnu-build-system) (native-inputs (list autoconf automake)) (synopsis "Default brushes for MyPaint") (description "This package provides the default set of brushes for MyPaint.") (home-page "https://github.com/mypaint/mypaint-brushes/") ;; Scripts are distributed under GPL2+ terms, brushes are provided as ;; public domain or under CC0 terms. (license (list license:gpl2+ license:cc0 license:public-domain)))) (define-public mypaint-brushes-1.3 (package (inherit mypaint-brushes) (name "mypaint-brushes") (version "1.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mypaint/mypaint-brushes") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1c95l1vfz7sbrdlzrbz7h1p6s1k113kyjfd9wfnxlm0p6562cz3j")))))) (define-public gimp-resynthesizer ;; GIMP does not respect any plugin search path environment variable, so after ;; installation users have to edit their GIMP settings to include ;; "$HOME/.guix-profile/lib/gimp/2.0/plug-ins/" in ;; “Edit->Preferences->Folders->Plug Ins”. (package (name "gimp-resynthesizer") (version "2.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/bootchk/resynthesizer") (commit (string-append "v" version)))) (sha256 (base32 "1jwc8bhhm21xhrgw56nzbma6fwg59gc8anlmyns7jdiw83y0zx3j")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments `( ;; Turn off tests to avoid: ;; make[1]: *** No rule to make target '../src/resynth-gui.c', needed by 'resynthesizer.pot'. Stop. #:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'set-env (lambda _ (setenv "CONFIG_SHELL" (which "sh")) #t)) (add-after 'configure 'set-prefix ;; Install plugin under $prefix, not under GIMP's libdir. (lambda* (#:key outputs #:allow-other-keys) (let ((target (string-append (assoc-ref outputs "out") "/lib/gimp/" ,(version-major (package-version gimp)) ".0"))) (substitute* (list "src/resynthesizer/Makefile" "src/resynthesizer-gui/Makefile") (("GIMP_LIBDIR = .*") (string-append "GIMP_LIBDIR = " target "\n"))) (mkdir-p target) #t)))))) (native-inputs ;; avoid ./autogen.sh: ./configure: /bin/sh: bad interpreter: ;; No such file or directory `(("autoconf" ,autoconf-wrapper) ("automake" ,automake) ("glib" ,glib "bin") ; glib-gettextize ("intltool" ,intltool) ("pkg-config" ,pkg-config))) (inputs (list gimp gdk-pixbuf ; needed by gimp-2.0.pc cairo gegl gtk+-2 ; needed by gimpui-2.0.pc glib)) (home-page "https://github.com/bootchk/resynthesizer") (synopsis "GIMP plugins for texture synthesis") (description "This package provides resynthesizer plugins for GIMP, which encompasses tools for healing selections (content-aware fill), enlarging the canvas and healing the border, increasing the resolution while adding detail, and transferring the style of an image.") (license license:gpl3+))) (define gegl-for-glimpse ;; Remove this when GIMP commit 2cae9b9acf9da98c4c9990819ffbd5aabe23017e ;; makes it into Glimpse. (package (inherit gegl) (arguments (substitute-keyword-arguments (package-arguments gegl) ((#:phases phases) `(modify-phases ,phases (add-after 'unpack 'refer-to-dot ;; XXX Without ‘dot’ in $PATH, Glimpse would fail to start with an ;; extremely obtuse ‘GEGL operation missing!’ error. (lambda _ (substitute* "gegl/gegl-dot.c" (("\"dot ") (format #f "\"~a " (which "dot")))) (substitute* "operations/common/introspect.c" (("g_find_program_in_path \\(\"dot\"\\)") (format #f "g_strdup (\"~a\")" (which "dot")))))))))) (inputs `(,@(package-inputs gegl) ("graphviz" ,graphviz))))) (define-public glimpse (package (name "glimpse") (version "0.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/glimpse-editor/Glimpse") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0drngj2xqzxfaag6pc4xjffiw003n4y43x5rb5bf4ziv1ac51dm9")))) (build-system gnu-build-system) (outputs '("out" "doc")) ; 9 MiB of gtk-doc HTML (arguments (list #:configure-flags #~(list (string-append "--with-html-dir=" #$output "/share/gtk-doc/html") "--enable-gtk-doc" ;; Prevent the build system from running 'gtk-update-icon-cache' ;; which is not needed during the build because Guix runs it at ;; profile creation time. "ac_cv_path_GTK_UPDATE_ICON_CACHE=true" ;; Disable automatic network request on startup to check for ;; version updates. "--disable-check-update" ;; ./configure requests not to annoy upstream with packaging bugs. "--with-bug-report-url=https://bugs.gnu.org/guix"))) (native-inputs (list autoconf automake gtk-doc intltool libtool libxslt ;for xsltproc pkg-config `(,glib "bin"))) ;for gdbus-codegen (inputs (list babl glib glib-networking libtiff libwebp libjpeg-turbo atk gexiv2 gtk+-2 libmypaint mypaint-brushes-1.3 libexif ;optional, EXIF + XMP support lcms ;optional, color management librsvg ;optional, SVG support libxcursor ;optional, Mouse Cursor support poppler ;optional, PDF support poppler-data gegl-for-glimpse)) ;XXX see comment in gegl-for-glimpse (home-page "https://glimpse-editor.github.io/") (synopsis "Glimpse Image Editor") (description "The Glimpse Image Editor is an application for image manipulation tasks such as photo retouching, composition and authoring. It supports all common image formats as well as specialized ones. It features a highly customizable interface that is extensible via a plugin system. It was forked from the GNU Image Manipulation Program.") (license license:gpl3+)))