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

stdenv.mkDerivation {
  name = "asc-support-2.0";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/asc-support-2.0.tar.gz;
    md5 = "34368ca79e524157bf6e89281371cb5a";
  };
  inherit stdenv aterm ptsupport toolbuslib asfsupport errorsupport sglr;
  buildInputs = [stdenv aterm ptsupport toolbuslib asfsupport errorsupport sglr];
}