nixpkgs/pkgs/development/compilers/ats2/default.nix

24 lines
621 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "ats2-${version}";
2016-05-11 17:01:59 +02:00
version = "0.2.6";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
2016-05-11 17:01:59 +02:00
sha256 = "0hfaw8mrxrmb9kdbz5sp4nfjsmncmq6zqwm1n2x2p6arn0za6y9i";
};
buildInputs = [ gmp ];
2015-05-01 00:54:40 +02:00
setupHook = ./setup-hook.sh;
2016-05-11 17:02:09 +02:00
meta = with stdenv.lib; {
description = "Functional programming language with dependent types";
homepage = "http://www.ats-lang.org";
2016-05-11 17:02:09 +02:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice ttuegel ];
};
}