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

stdenv.mkDerivation {
  name = "error-support-0.1";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/error-support-0.1.tar.gz;
    md5 = "906389fd8b44bf2847d8281450d5a701";
  };
  inherit aterm toolbuslib;
  buildInputs = [aterm toolbuslib];
}