6a59d1a98f
* Added gdk-pixbuf, which has been revived and is required by GTK+. * Don't install the documentation of aforementioned packages. This cuts 56 MiB off the closure of GTK+-based packages. It wasn't really useful anyway because it's not installed in a way that allows users to find it easily on NixOS. And if you want it, it's faster to Google it. svn path=/nixpkgs/branches/x-updates/; revision=25853
24 lines
652 B
Nix
24 lines
652 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gdk-pixbuf-2.22.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gdk-pixbuf/2.22/${name}.tar.bz2";
|
|
sha256 = "6ce87eda24af9362307b2593c154d0b660f4e26d0abf2e71d46d0ddd55fd953d";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig glib libtiff libjpeg libpng ];
|
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
meta = {
|
|
description = "A library for image loading and manipulation";
|
|
|
|
homepage = http://library.gnome.org/devel/gdk-pixbuf/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|