diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-26T00·49+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-26T23·06+0100 |
commit | 4947aa9ab335a2148616a6eb6a072f174958bd64 (patch) | |
tree | d13512ef1c614f2134e65136da693b8fdcc862bf | |
parent | dcb39d31983334cf59ef2ba56fbcea8ab0328114 (diff) |
fix(3p/git): Use git derivation from stable channel as base r/859
unstable is, of course, not working correctly at the moment
-rw-r--r-- | third_party/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index 350d4c8139e5..38317f7005e5 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; }; |