libgnomeprint now wants bison and flex during configure...
svn path=/nixpkgs/trunk/; revision=6106
This commit is contained in:
parent
f0d6702f90
commit
c6b246ae8c
@ -114,7 +114,8 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
libgnomeprint = (import ./libgnomeprint) {
|
libgnomeprint = (import ./libgnomeprint) {
|
||||||
inherit fetchurl stdenv libxml2 perl perlXMLParser pkgconfig popt;
|
inherit fetchurl stdenv libxml2 perl perlXMLParser pkgconfig popt
|
||||||
|
bison flex;
|
||||||
inherit glib pango;
|
inherit glib pango;
|
||||||
libart = libart_lgpl;
|
libart = libart_lgpl;
|
||||||
input = desktop.libgnomeprint;
|
input = desktop.libgnomeprint;
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, glib, pango, libart, libxml2, popt}:
|
{input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, glib, pango, libart, libxml2, popt, bison, flex}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
inherit (input) name src;
|
inherit (input) name src;
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
perl perlXMLParser pkgconfig popt libxml2
|
perl perlXMLParser pkgconfig popt libxml2
|
||||||
glib pango
|
glib pango bison flex
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [libxml2 libart];
|
propagatedBuildInputs = [libxml2 libart];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user