aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/default.nix b/default.nix
index 6a7a98aa5e..ae6a8d06e5 100644
--- a/default.nix
+++ b/default.nix
@@ -41,9 +41,7 @@ stdenv.mkDerivation rec {
buildInputs = [
hostname
- python2 # update-compat.py
python3 time # coq-makefile timing tools
- dune
]
++ (with ocamlPackages; [ ocaml findlib num ])
++ optionals buildIde [
@@ -66,8 +64,9 @@ stdenv.mkDerivation rec {
)
++ optionals shell (
[ jq curl gitFull gnupg ] # Dependencies of the merging script
- ++ (with ocamlPackages; [ merlin ocp-indent ocp-index utop ]) # Dev tools
+ ++ (with ocamlPackages; [ merlin ocp-indent ocp-index utop ocamlformat ]) # Dev tools
++ [ graphviz ] # Useful for STM debugging
+ ++ [ dune_2 ] # Maybe the next build system
);
src =
@@ -78,7 +77,7 @@ stdenv.mkDerivation rec {
!elem (baseNameOf path) [".git" "result" "bin" "_build" "_build_ci" "nix"]) ./.;
preConfigure = ''
- patchShebangs dev/tools/
+ patchShebangs dev/tools/ doc/stdlib
'';
prefixKey = "-prefix ";
@@ -112,7 +111,7 @@ stdenv.mkDerivation rec {
setupHook = writeText "setupHook.sh" "
addCoqPath () {
if test -d \"$1/lib/coq/${coq-version}/user-contrib\"; then
- export COQPATH=\"$COQPATH\${COQPATH:+:}$1/lib/coq/${coq-version}/user-contrib/\"
+ export COQPATH=\"\${COQPATH-}\${COQPATH:+:}$1/lib/coq/${coq-version}/user-contrib/\"
fi
}