3
0
Fork 0
forked from mirrors/nixpkgs

sdf2-bundle now needs pkg-config

svn path=/nixpkgs/trunk/; revision=3629
This commit is contained in:
Martin Bravenboer 2005-08-17 18:39:04 +00:00
parent 5d98173434
commit 0f8f7c03ff
2 changed files with 4 additions and 4 deletions

View file

@ -1,12 +1,12 @@
{stdenv, fetchurl, aterm, getopt}:
{stdenv, fetchurl, aterm, getopt, pkgconfig}:
stdenv.mkDerivation {
name = "sdf2-bundle-2.3";
name = "sdf2-bundle-2.3.1";
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-2.3.1/sdf2-bundle-2.3.1.tar.gz;
md5 = "4576b0b5315dccae8b038c53305c6979";
};
buildInputs = [aterm];
buildInputs = [aterm pkgconfig];
propagatedBuildInputs = [getopt];
}

View file

@ -619,7 +619,7 @@ rec {
};
sdf = (import ../development/tools/parsing/sdf) {
inherit fetchurl stdenv aterm getopt;
inherit fetchurl stdenv aterm getopt pkgconfig;
};
expat = (import ../development/libraries/expat) {