about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-05-26T00·49+0100
committerVincent Ambo <tazjin@google.com>2020-05-26T23·06+0100
commit4947aa9ab335a2148616a6eb6a072f174958bd64 (patch)
treed13512ef1c614f2134e65136da693b8fdcc862bf /third_party
parentdcb39d31983334cf59ef2ba56fbcea8ab0328114 (diff)
fix(3p/git): Use git derivation from stable channel as base r/859
unstable is, of course, not working correctly at the moment
Diffstat (limited to 'third_party')
-rw-r--r--third_party/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/default.nix b/third_party/default.nix
index 350d4c8139..38317f7005 100644
--- a/third_party/default.nix
+++ b/third_party/default.nix
@@ -162,7 +162,8 @@ in exposed // {
 
   # Packages to be overridden
   originals = {
-    inherit (nixpkgs) abseil-cpp git glog notmuch;
+    inherit (nixpkgs) abseil-cpp glog notmuch;
+    inherit (stableNixpkgs) git;
     ffmpeg = nixpkgs.ffmpeg-full;
   };