mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
19 lines
525 B
Nix
19 lines
525 B
Nix
{ stdenv, fetchurl, gmp }:
|
|
|
|
let version = "0.0.5"; in stdenv.mkDerivation {
|
|
name = "ats2-postiats-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
|
|
sha256 = "1rzcqc7fwqf0y4cc14lr282r25s66jygf6cxrnf5l8p5p550l0dl";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|