summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-12-10 17:03:24 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-12-18 08:20:10 +0100
commitb49a3fb8521706bb9ae9d2bfae4c7008ff649941 (patch)
tree60d8147a5405600b3c993cecd70c51e1fa5b10ef
parent9a5e66f5d4bd16454b6bf1e7303ca86737f98ab3 (diff)
downloadnixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.tar
nixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.tar.gz
nixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.tar.bz2
nixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.tar.lz
nixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.tar.xz
nixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.tar.zst
nixpkgs-b49a3fb8521706bb9ae9d2bfae4c7008ff649941.zip
cryptoverif: fix search for default library
-rw-r--r--pkgs/applications/science/logic/cryptoverif/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/logic/cryptoverif/default.nix b/pkgs/applications/science/logic/cryptoverif/default.nix
index 28295ea2892..98d0a2637a7 100644
--- a/pkgs/applications/science/logic/cryptoverif/default.nix
+++ b/pkgs/applications/science/logic/cryptoverif/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   ** from under $out/libexec. By default, it expects to find the files
   ** in $CWD which doesn't work. */
   patchPhase = ''
-    substituteInPlace ./src/settings.ml \
+    substituteInPlace ./src/syntax.ml \
       --replace \"default\" \"$out/libexec/default\"
   '';