about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/sdf/sdf2-bundle-2.3.3.nix
blob: c2620b561abe3c87c2aa0cee13dd49b118bd7215 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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];
}