3
0
Fork 0
forked from mirrors/nixpkgs

libgnomeprint 2.12.1 has a few additional dependencies (flex, bison)

svn path=/nixpkgs/trunk/; revision=5606
This commit is contained in:
Armijn Hemel 2006-07-06 11:10:06 +00:00
parent febd8ffe69
commit 68dad7fada

View file

@ -0,0 +1,12 @@
{input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, glib, pango, libart, libxml2, popt, bison, flex}:
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [
perl perlXMLParser pkgconfig popt libxml2
glib pango bison flex
];
propagatedBuildInputs = [libxml2 libart];
}