summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/error-support/error-support-0.1.1.nix
blob: a55892155f52cdcaeffddbc2da382f98d1c7c599 (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.1";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/error-support-0.1.1.tar.gz;
    md5 = "ebd0965e29ee22508a189477b1dae12b";
  };
  inherit aterm toolbuslib;
  buildInputs = [aterm toolbuslib];
}