2015-09-22 19:44:16 +03:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libpng, glib /*just passthru*/ }:
|
2013-02-01 00:50:30 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-02-27 18:51:30 +03:00
|
|
|
name = "pixman-0.34.0";
|
2013-02-01 00:50:30 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-09-22 19:44:16 +03:00
|
|
|
url = "mirror://xorg/individual/lib/${name}.tar.bz2";
|
2016-02-27 18:51:30 +03:00
|
|
|
sha256 = "184lazwdpv67zrlxxswpxrdap85wminh1gmq1i5lcz6iycw39fir";
|
2013-02-01 00:50:30 +04:00
|
|
|
};
|
|
|
|
|
2016-02-29 21:14:41 +03:00
|
|
|
patches = [];
|
2013-04-18 23:31:56 +04:00
|
|
|
|
2015-09-22 19:44:16 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = stdenv.lib.optional doCheck libpng;
|
2013-04-18 23:31:56 +04:00
|
|
|
|
2015-09-22 19:44:16 +03:00
|
|
|
configureFlags = stdenv.lib.optional stdenv.isArm "--disable-arm-iwmmxt";
|
2013-02-01 00:50:30 +04:00
|
|
|
|
2015-09-22 19:44:16 +03:00
|
|
|
doCheck = true;
|
2015-03-25 06:54:05 +03:00
|
|
|
|
2015-09-22 19:44:16 +03:00
|
|
|
postInstall = glib.flattenInclude;
|
2015-08-16 19:27:40 +03:00
|
|
|
|
2015-09-22 19:44:16 +03:00
|
|
|
meta = with stdenv.lib; {
|
2013-02-01 00:50:30 +04:00
|
|
|
homepage = http://pixman.org;
|
|
|
|
description = "A low-level library for pixel manipulation";
|
2015-09-22 19:44:16 +03:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2013-02-01 00:50:30 +04:00
|
|
|
};
|
|
|
|
}
|