nixpkgs/pkgs/development/compilers/ats2/default.nix
2015-05-17 06:43:26 -04:00

24 lines
624 B
Nix

{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "ats2-${version}";
version = "0.1.12";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
sha256 = "1jiki88mzhki74xh5ffw3pali5zs74pa0nylcb8n4ypfvdpqvlhb";
};
buildInputs = [ gmp ];
setupHook = ./setup-hook.sh;
meta = {
description = "Functional programming language with dependent types";
homepage = "http://www.ats-lang.org";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}