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

22 lines
590 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "ats2-${version}";
2014-09-20 08:15:42 +02:00
version = "0.1.3";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
2014-09-20 08:15:42 +02:00
sha256 = "157k703zsdf0gr7mwz08rdldfgwfsm5ipg36xcc8092fcjs5ryqp";
};
buildInputs = [ gmp ];
meta = {
description = "Functional programming language with dependent types";
homepage = "http://www.ats-lang.org";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}