diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-26 07:35:55 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-26 09:47:22 +0200 |
commit | 11d8a47bcf7e20c9472d51e7cf381e5361f37d5f (patch) | |
tree | 6b4340f82e142b9c269fcf1ac4e759795338ebf2 /gnu/packages | |
parent | e8563962ee996311795d8377feb08e9156acbffc (diff) | |
download | guix-11d8a47bcf7e20c9472d51e7cf381e5361f37d5f.tar.gz guix-11d8a47bcf7e20c9472d51e7cf381e5361f37d5f.zip |
gnu: Remove libgnomeprintui.
* gnu/packages/gnome.scm (libgnomeprintui): Remove unused variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6feef9662c..54ae54dd26 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3973,36 +3973,6 @@ graphical interfaces described in glade files and for accessing the widgets built in the loading process.") (license license:gpl2+))) ; This is correct. GPL not LGPL - -(define-public libgnomeprintui - ;; Deprecated; see libgnomeprint. - (package - (name "libgnomeprintui") - (version "2.18.6") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" - (version-major+minor version) "/" - name "-" version ".tar.bz2")) - (sha256 - (base32 - "0spl8vinb5n6n1krnfnr61dwaxidg67h8j94z9p59k2xdsvfashm")))) - (build-system gnu-build-system) - ;; Mentioned as Required in the .pc file - (propagated-inputs `(("libgnomeprint" ,libgnomeprint))) - (inputs `(("gtk+" ,gtk+-2) - ("glib" ,glib) - ("gnome-icon-theme" ,gnome-icon-theme) - ("libgnomecanvas" ,libgnomecanvas) - ("libxml2" ,libxml2))) - (native-inputs - `(("intltool" ,intltool) - ("pkg-config" ,pkg-config))) - (home-page "https://projects.gnome.org/gnome-print/home/faq.html") - (synopsis "Printing framework for GNOME") - (description (package-description libgnomeprint)) - (license license:lgpl2.0+))) - (define-public libbonoboui (package (name "libbonoboui") |