2016-09-18 21:35:23 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, glib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-06-20 07:47:52 +02:00
|
|
|
name = "libcroco-0.6.12";
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz";
|
2017-06-20 07:47:52 +02:00
|
|
|
sha256 = "0q7qhi7z64i26zabg9dbs5706fa8pmzp1qhpa052id4zdiabbi6x";
|
2016-09-18 21:35:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
outputBin = "dev";
|
|
|
|
|
|
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic";
|
|
|
|
|
2017-06-20 07:47:52 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libxml2 glib ];
|
2016-09-18 21:35:23 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-06-20 07:47:52 +02:00
|
|
|
description = "GNOME CSS2 parsing and manipulation toolkit";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://git.gnome.org/browse/libcroco;
|
2017-06-20 07:47:52 +02:00
|
|
|
license = licenses.lgpl2;
|
2016-09-18 21:35:23 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|