2013-10-25 13:33:32 -04:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
|
|
|
|
2014-04-27 11:24:09 -05:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ats2-${version}";
|
2015-05-17 06:43:26 -04:00
|
|
|
version = "0.1.12";
|
2013-10-25 13:33:32 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
|
2015-05-17 06:43:26 -04:00
|
|
|
sha256 = "1jiki88mzhki74xh5ffw3pali5zs74pa0nylcb8n4ypfvdpqvlhb";
|
2013-10-25 13:33:32 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
2015-04-30 18:54:40 -04:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2013-10-25 13:33:32 -04:00
|
|
|
meta = {
|
2014-04-27 11:24:09 -05:00
|
|
|
description = "Functional programming language with dependent types";
|
|
|
|
homepage = "http://www.ats-lang.org";
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2015-01-02 14:41:16 -06:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-04-27 11:24:09 -05:00
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
2013-10-25 13:33:32 -04:00
|
|
|
};
|
|
|
|
}
|