aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix
index 0b23bdb48c..4700a6ed64 100644
--- a/default.nix
+++ b/default.nix
@@ -33,7 +33,7 @@
}:
with pkgs;
-with stdenv.lib;
+with pkgs.lib;
stdenv.mkDerivation rec {
@@ -98,7 +98,7 @@ stdenv.mkDerivation rec {
createFindlibDestdir = !shell;
- postInstall = "ln -s $out/lib/coq $OCAMLFIND_DESTDIR/coq";
+ postInstall = "ln -s $out/lib/coq-core $OCAMLFIND_DESTDIR/coq-core";
inherit doInstallCheck;