Update of sdf2-bundle to 2.3.2

svn path=/nixpkgs/trunk/; revision=3714
This commit is contained in:
Martin Bravenboer 2005-08-26 21:42:17 +00:00
parent fb7710c197
commit a0da6723f3
2 changed files with 13 additions and 1 deletions

View file

@ -1 +1 @@
import ./sdf2-bundle-2.3.1.nix
import ./sdf2-bundle-2.3.2.nix

View file

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