2013-10-05 19:21:13 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
|
2013-08-04 19:59:05 +01:00
|
|
|
, jasper, libintlOrEmpty, gobjectIntrospection }:
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2013-10-05 19:21:13 +01:00
|
|
|
let
|
2015-04-04 05:34:57 +01:00
|
|
|
ver_maj = "2.31";
|
|
|
|
ver_min = "3";
|
2013-10-05 19:21:13 +01:00
|
|
|
in
|
2012-05-16 22:58:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-05 19:21:13 +01:00
|
|
|
name = "gdk-pixbuf-${ver_maj}.${ver_min}";
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2012-01-06 23:03:37 +00:00
|
|
|
src = fetchurl {
|
2013-10-05 19:21:13 +01:00
|
|
|
url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
|
2015-04-04 05:34:57 +01:00
|
|
|
sha256 = "ddd861747bb7c580acce7cfa3ce38c3f52a9516e66a6477988fd100c8fb9eabc";
|
2011-09-20 07:21:56 +01:00
|
|
|
};
|
|
|
|
|
2012-08-27 03:53:19 +01:00
|
|
|
outputs = [ "dev" "out" "bin" "doc" ];
|
|
|
|
|
2014-02-27 19:37:28 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2012-08-27 03:53:19 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-09-20 07:21:56 +01:00
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2013-06-13 07:36:45 +01:00
|
|
|
buildInputs = [ libX11 libintlOrEmpty ];
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2013-08-04 19:59:05 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
2011-09-20 07:21:56 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2013-08-04 19:59:05 +01:00
|
|
|
configureFlags = "--with-libjasper --with-x11"
|
|
|
|
+ stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes"
|
|
|
|
;
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2014-02-02 09:42:53 +00:00
|
|
|
doCheck = true;
|
2013-10-05 19:21:13 +01:00
|
|
|
|
2014-08-30 22:30:31 +01:00
|
|
|
# propagate the bin output
|
|
|
|
postPhases = "postPostFixup";
|
|
|
|
postPostFixup = ''
|
|
|
|
echo -n " $bin" >> "$dev"/nix-support/propagated-*build-inputs
|
|
|
|
'';
|
|
|
|
|
2011-09-20 07:21:56 +01:00
|
|
|
meta = {
|
|
|
|
description = "A library for image loading and manipulation";
|
|
|
|
homepage = http://library.gnome.org/devel/gdk-pixbuf/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2013-11-06 09:58:20 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-09-20 07:21:56 +01:00
|
|
|
};
|
|
|
|
}
|