nixpkgs/pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.1.nix
Martin Bravenboer 0f8f7c03ff sdf2-bundle now needs pkg-config
svn path=/nixpkgs/trunk/; revision=3629
2005-08-17 18:39:04 +00:00

13 lines
347 B
Nix

{stdenv, fetchurl, aterm, getopt, pkgconfig}:
stdenv.mkDerivation {
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 pkgconfig];
propagatedBuildInputs = [getopt];
}