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