From 844cbdf3db2185e212355621e08ca60329653369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 9 Mar 2021 10:06:32 +0100 Subject: [PATCH] fix dune override --- overrides.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overrides.nix b/overrides.nix index 293f0f3..169a127 100644 --- a/overrides.nix +++ b/overrides.nix @@ -1,4 +1,4 @@ -{ lock, dune }: +{ lock, ocamlPackages }: self: super: { straightBuild = { pname, ... }@args: self.trivialBuild ({ @@ -97,7 +97,7 @@ self: super: { # dune has a nontrivial derivation, which does not buildable from the melpa # wrapper falling back to the one in nixpkgs - dune = dune.overrideAttrs (old: { + dune = ocamlPackages.dune_2.overrideAttrs (old: { # Emacs derivations require an ename attribute ename = old.pname;