summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2020-11-09 20:17:41 +0100
committerDomen Kožar <domen@dev.si>2020-11-09 20:17:41 +0100
commitc1e5f8723ceb684c8d501d4d4ae738fef704747e (patch)
treefcc124f14367e718f8676dc2dceeb37cfc5b0052 /pkgs
parent92e357dc59f8c3ebde3500dfe0c5c54021f87cb0 (diff)
downloadnixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.tar
nixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.tar.gz
nixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.tar.bz2
nixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.tar.lz
nixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.tar.xz
nixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.tar.zst
nixpkgs-c1e5f8723ceb684c8d501d4d4ae738fef704747e.zip
cachix: bump to 0.5.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index a74b1eb05cd..7c233ade742 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -95,7 +95,15 @@ self: super: builtins.intersectAttrs super {
   sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
 
   # profiling is disabled to allow C++/C mess to work, which is fixed in GHC 8.8
-  cachix = disableLibraryProfiling super.cachix;
+  cachix = overrideSrc (disableLibraryProfiling super.cachix) {
+    src = (pkgs.fetchFromGitHub {
+      owner = "cachix";
+      repo = "cachix";
+      rev = "1471050f5906ecb7cd0d72115503d07d2e3beb17";
+      sha256 = "1lkrmhv5x9dpy53w33kxnhv4x4qm711ha8hsgccrjmxaqcsdm59g";
+    }) + "/cachix";
+    version = "0.5.1";
+  };
   hercules-ci-agent = disableLibraryProfiling super.hercules-ci-agent;
 
   # avoid compiling twice by providing executable as a separate output (with small closure size)