665c4882e8
Signed-off-by: Shea Levy <shea@shealevy.com>
20 lines
569 B
Nix
20 lines
569 B
Nix
{ 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 ];
|
|
};
|
|
}
|