mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
52 lines
633 B
Nix
52 lines
633 B
Nix
{ batteries
|
|
, buildDunePackage
|
|
, memtrace
|
|
, menhir
|
|
, menhirLib
|
|
, pprint
|
|
, ppx_deriving
|
|
, ppx_deriving_yojson
|
|
, ppxlib
|
|
, process
|
|
, sedlex
|
|
, src
|
|
, stdint
|
|
, version
|
|
, yojson
|
|
, zarith
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "fstar";
|
|
inherit version src;
|
|
|
|
postPatch = ''
|
|
patchShebangs ocaml/fstar-lib/make_fstar_version.sh
|
|
cd ocaml
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
menhir
|
|
];
|
|
|
|
buildInputs = [
|
|
memtrace
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
batteries
|
|
menhirLib
|
|
pprint
|
|
ppx_deriving
|
|
ppx_deriving_yojson
|
|
ppxlib
|
|
process
|
|
sedlex
|
|
stdint
|
|
yojson
|
|
zarith
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|