From c4b1ceb5a7c9a93062be1dec041370a8eaeb0999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 18 Jul 2019 10:41:14 +0200 Subject: [PATCH] cachix: fix #65007 --- pkgs/development/tools/cachix/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/cachix/default.nix b/pkgs/development/tools/cachix/default.nix index 58a0da813f7a..b6098ca98bfe 100644 --- a/pkgs/development/tools/cachix/default.nix +++ b/pkgs/development/tools/cachix/default.nix @@ -1,8 +1,6 @@ { haskellPackages, haskell }: -haskell.lib.justStaticExecutables (haskellPackages.override { - overrides = self: super: { +haskell.lib.justStaticExecutables (haskellPackages.extend (self: super: { cachix = haskell.lib.doDistribute (self.cachix_0_2_1 or self.cachix); cachix-api = self.cachix-api_0_2_1 or self.cachix-api; - }; -}).cachix +})).cachix