Adding ATS1, updating ATS2 package.

This commit is contained in:
Artyom Shalkhakov
2014-03-25 04:53:13 +01:00
parent c814dab2ee
commit 0242b3c6ac
4 changed files with 84 additions and 2 deletions
+4 -2
View File
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, gmp }:
let version = "0.0.5"; in stdenv.mkDerivation {
let version = "0.0.6"; in stdenv.mkDerivation {
name = "ats2-postiats-${version}";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
sha256 = "1rzcqc7fwqf0y4cc14lr282r25s66jygf6cxrnf5l8p5p550l0dl";
sha256 = "110a4drzf656j9s5yfvxj1cwgh5g9ysnh40cv8y9qfjjkki8vd5b";
};
buildInputs = [ gmp ];
@@ -15,4 +15,6 @@ let version = "0.0.5"; in stdenv.mkDerivation {
homepage = http://www.ats-lang.org/;
license = stdenv.lib.licenses.gpl3Plus;
};
platforms = stdenv.lib.platforms.all;
}