Upgrade of sdf to 2.3.3

svn path=/nixpkgs/trunk/; revision=4209
This commit is contained in:
Martin Bravenboer 2005-11-03 18:15:14 +00:00
parent c2732d31c7
commit 9bdcac2fe9
2 changed files with 13 additions and 1 deletions

View File

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

View File

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