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

24 lines
623 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gmp }:
stdenv.mkDerivation rec {
name = "ats2-${version}";
2015-11-29 15:04:57 +00:00
version = "0.2.4";
src = fetchurl {
url = "mirror://sourceforge/ats2-lang/ATS2-Postiats-${version}.tgz";
2015-11-29 15:04:57 +00:00
sha256 = "0dx3r2vxmarj3aqm0xlcmls1h08pll9y9k4820df41awyrwmfvcy";
};
buildInputs = [ gmp ];
2015-04-30 22:54:40 +00:00
setupHook = ./setup-hook.sh;
meta = {
description = "Functional programming language with dependent types";
homepage = "http://www.ats-lang.org";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}