nixpkgs/pkgs/development/tools/parsing/sglr/sglr-3.11.nix

13 lines
399 B
Nix
Raw Normal View History

{stdenv, fetchurl, aterm, toolbuslib, ptsupport, errorsupport}:
stdenv.mkDerivation {
name = "sglr-3.11";
builder = ./builder.sh;
src = fetchurl {
url = http://www.cwi.nl/projects/MetaEnv/sglr/sglr-3.11.tar.gz;
md5 = "c60536c7e967e93d1ec2cd9c8ae0a4ae";
};
inherit stdenv aterm ptsupport toolbuslib errorsupport;
buildInputs = [stdenv aterm ptsupport toolbuslib errorsupport];
}