ats/ats2: clean-up, adopt, add Hydra packages

This also bumps ATS2 to version 0.0.7

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp
2014-04-27 11:24:09 -05:00
parent 92f7781f00
commit e590c0a867
2 changed files with 18 additions and 35 deletions

View File

@@ -1,20 +1,21 @@
{ stdenv, fetchurl, gmp }:
let version = "0.0.6"; in stdenv.mkDerivation {
name = "ats2-postiats-${version}";
stdenv.mkDerivation rec {
name = "ats2-${version}";
version = "0.0.7";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
sha256 = "110a4drzf656j9s5yfvxj1cwgh5g9ysnh40cv8y9qfjjkki8vd5b";
sha256 = "1cv7caaf9fj6z3kln02ikkbmcy42324v39lzx3cf6qcsywwpm8fx";
};
buildInputs = [ gmp ];
meta = {
description = "A statically typed programming language that unifies implementation with formal specification";
homepage = http://www.ats-lang.org/;
license = stdenv.lib.licenses.gpl3Plus;
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 ];
};
platforms = stdenv.lib.platforms.all;
}