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

stdenv.mkDerivation {
  name = "sglr-3.12";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/sglr-3.12.tar.gz;
    md5 = "053753e419adfc337c4776412e3787ab";
  };
  inherit stdenv aterm ptsupport toolbuslib errorsupport;
  buildInputs = [stdenv aterm ptsupport toolbuslib errorsupport];
}