2013-10-25 19:33:32 +02:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
|
|
|
|
2014-04-27 18:24:09 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ats2-${version}";
|
2014-09-20 08:15:42 +02:00
|
|
|
version = "0.1.3";
|
2013-10-25 19:33:32 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
|
2014-09-20 08:15:42 +02:00
|
|
|
sha256 = "157k703zsdf0gr7mwz08rdldfgwfsm5ipg36xcc8092fcjs5ryqp";
|
2013-10-25 19:33:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
|
|
|
meta = {
|
2014-04-27 18:24:09 +02:00
|
|
|
description = "Functional programming language with dependent types";
|
|
|
|
homepage = "http://www.ats-lang.org";
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
2013-10-25 19:33:32 +02:00
|
|
|
};
|
|
|
|
}
|