summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.12/core/libcroco/default.nix
blob: 1875c1491f961c36ee9b923da36bfa4282c312bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, pkgconfig, libxml2, glib }:

stdenv.mkDerivation rec {
  name = "libcroco-0.6.8";

  src = fetchurl {
    url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz";
    sha256 = "0w453f3nnkbkrly7spx5lx5pf6mwynzmd5qhszprq8amij2invpa";
  };

  configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic";

  buildInputs = [ pkgconfig libxml2 glib ];

  meta = with stdenv.lib; {
    platforms = platforms.unix;
  };
}