summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/pt-support/pt-support-1.1.nix
blob: 6ba2bf7450d0031c5f4cc12e9047d571420c8680 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, aterm, toolbuslib, errorsupport}: 

stdenv.mkDerivation {
  name = "pt-support-1.1";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/pt-support-1.1.tar.gz;
    md5 = "51bad46427c7cf95d029c33f079581ff";
  };
  inherit aterm toolbuslib errorsupport;
  buildInputs = [aterm toolbuslib errorsupport];
}