2014-03-25 04:51:35 +01:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
|
|
|
|
2014-04-27 18:24:09 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ats-${version}";
|
|
|
|
version = "0.2.11";
|
2014-03-25 04:51:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/ats-lang/ats-lang-anairiats-${version}.tgz";
|
|
|
|
sha256 = "0rqykyx5whichx85jr4l4c9fdan0qsdd4kwd7a81k3l07zbd9fc6";
|
|
|
|
};
|
2014-04-27 18:24:09 +02:00
|
|
|
|
2014-03-25 04:51:35 +01:00
|
|
|
# this is necessary because atxt files usually include some .hats files
|
|
|
|
patches = [ ./install-atsdoc-hats-files.patch ];
|
|
|
|
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 ];
|
2014-03-25 04:51:35 +01:00
|
|
|
};
|
|
|
|
}
|