summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/ats2
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-10-25 13:33:32 -0400
committerShea Levy <shea@shealevy.com>2013-10-25 13:33:32 -0400
commit665c4882e8fb5df12ac6087ffd639c651790d5bb (patch)
tree3f92ce4eb344c7b26fab57043d57ca9ecb77a4af /pkgs/development/compilers/ats2
parentf79a7359b0210dfda85d70ee0b92b4e00008a8de (diff)
Add ats
Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs/development/compilers/ats2')
-rw-r--r--pkgs/development/compilers/ats2/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ats2/default.nix b/pkgs/development/compilers/ats2/default.nix
new file mode 100644
index 000000000000..ae0c6419eb61
--- /dev/null
+++ b/pkgs/development/compilers/ats2/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, gmp }:
+
+let version = "0.0.3"; in stdenv.mkDerivation {
+ name = "ats2-postiats-${version}";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
+ sha256 = "0hq63zrmm92j5ffnsmylhhllm8kgjpjkaj4xvzz1zlshz39lijxp";
+ };
+
+ buildInputs = [ gmp ];
+
+ meta = {
+ description = "A statically typed programming language that unifies implementation with formal specification";
+ homepage = http://www.ats-lang.org/;
+ license = stdenv.lib.gpl3Plus;
+ maintainers = [ stdenv.lib.maintainers.shlevy ];
+ };
+}