Added sdf2-bundle 2.4

svn path=/nixpkgs/trunk/; revision=10371
This commit is contained in:
Sander van der Burg 2008-01-29 09:37:15 +00:00
parent 87ff8a8869
commit 067aaa8004
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{stdenv, fetchurl, aterm, getopt, pkgconfig}:
stdenv.mkDerivation {
name = "sdf2-bundle-2.4";
src = fetchurl {
url = http://buildfarm.st.ewi.tudelft.nl/releases/meta-environment/sdf2-bundle-2.4pre212034-2nspl1xc/sdf2-bundle-2.4.tar.gz;
md5 = "00107bef17d3fb8486575f8974fb384b";
};
buildInputs = [aterm pkgconfig];
propagatedBuildInputs = [getopt];
}

View File

@ -1630,6 +1630,14 @@ rec {
stdenv = overrideInStdenv stdenv [gnumake380];
};
sdf24 = import ../development/tools/parsing/sdf/sdf2-bundle-2.4.nix {
inherit fetchurl getopt pkgconfig;
aterm = aterm25;
# Note: sdf2-bundle currently requires GNU make 3.80; remove
# explicit dependency when this is fixed.
stdenv = overrideInStdenv stdenv [gnumake380];
};
strace = import ../development/tools/misc/strace {
inherit fetchurl stdenv;
};