nixpkgs/pkgs/development/compilers/ats2/default.nix

21 lines
566 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp }:
2014-03-25 03:51:35 +00:00
let version = "0.0.6"; in stdenv.mkDerivation {
name = "ats2-postiats-${version}";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
2014-03-25 03:51:35 +00:00
sha256 = "110a4drzf656j9s5yfvxj1cwgh5g9ysnh40cv8y9qfjjkki8vd5b";
};
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;
};
2014-03-25 03:51:35 +00:00
platforms = stdenv.lib.platforms.all;
}