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

43 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, z3, ocamlPackages, makeWrapper }:
2016-01-19 00:44:21 +00:00
stdenv.mkDerivation rec {
name = "fstar-${version}";
version = "0.9.5.0";
2016-01-19 00:44:21 +00:00
src = fetchFromGitHub {
owner = "FStarLang";
repo = "FStar";
rev = "v${version}";
sha256 = "1pi2ny3kpmvm85x8w98anhjf0hp0wccc51m7v697qypn5cl4ydqk";
2016-01-19 00:44:21 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2016-01-19 00:44:21 +00:00
buildInputs = with ocamlPackages; [
z3 ocaml findlib batteries menhir stdint
zarith camlp4 yojson pprint
2016-01-19 00:44:21 +00:00
];
makeFlags = [ "PREFIX=$(out)" ];
2016-01-19 00:44:21 +00:00
preBuild = ''
2017-05-10 08:33:16 +00:00
patchShebangs src/tools
patchShebangs bin
2016-01-19 00:44:21 +00:00
'';
buildFlags = "-C src/ocaml-output";
2016-01-19 00:44:21 +00:00
installFlags = "-C src/ocaml-output";
postInstall = ''
wrapProgram $out/bin/fstar.exe --prefix PATH ":" "${z3}/bin"
'';
meta = with stdenv.lib; {
description = "ML-like functional programming language aimed at program verification";
homepage = https://www.fstar-lang.org;
2016-01-19 00:44:21 +00:00
license = licenses.asl20;
2016-06-30 15:57:32 +00:00
platforms = with platforms; darwin ++ linux;
maintainers = with maintainers; [ gebner ];
2016-01-19 00:44:21 +00:00
};
}