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}";
|
2016-05-16 14:08:50 +01:00
|
|
|
version = "0.2.7";
|
2013-10-25 18:33:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
|
2016-05-16 14:08:50 +01:00
|
|
|
sha256 = "1w9cncahv0vkqsj4vlfnn7bn61jvgxgjhk7wbppcm3yhb48pkmda";
|
2013-10-25 18:33:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
2015-04-30 23:54:40 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2016-05-11 16:02:09 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-04-27 17:24:09 +01:00
|
|
|
description = "Functional programming language with dependent types";
|
|
|
|
homepage = "http://www.ats-lang.org";
|
2016-05-11 16:02:09 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice ttuegel ];
|
2013-10-25 18:33:32 +01:00
|
|
|
};
|
|
|
|
}
|