summary refs log tree commit diff
path: root/pkgs/development/libraries/pixman/default.nix
blob: 30cceb59c00a9d8ce7c5f4ab795519b7e339710c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ fetchurl, stdenv, pkgconfig, libpng, glib /*just passthru*/ }:

stdenv.mkDerivation rec {
  name = "pixman-0.32.8";

  src = fetchurl {
    url = "mirror://xorg/individual/lib/${name}.tar.bz2";
    sha1 = "5c57045622265b877c9bf02d531973eadf942140";
  };

  patches = stdenv.lib.optional stdenv.isDarwin ./fix-clang36.patch;

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = stdenv.lib.optional doCheck libpng;

  configureFlags = stdenv.lib.optional stdenv.isArm "--disable-arm-iwmmxt";

  doCheck = true;

  postInstall = glib.flattenInclude;

  meta = with stdenv.lib; {
    homepage = http://pixman.org;
    description = "A low-level library for pixel manipulation";
    license = licenses.mit;
    platforms = platforms.all;
  };
}