diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-26T10·52+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-26T10·54+0100 |
commit | fe45079d19330889e02ad76d9874c04c299f4c9e (patch) | |
tree | 329fa21b36c6fc22fa17ca1973035ed1847d5ade | |
parent | 74a70896f26a42365d671720811e41cda24dc9c5 (diff) |
chore(3p): Expose nixpkgs commit to depot r/857
-rw-r--r-- | third_party/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index b4405a19f83b..350d4c8139e5 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -6,9 +6,9 @@ let # Tracking nixos-unstable as of 2020-05-21. - commit = "0f5ce2fac0c726036ca69a5524c59a49e2973dd4"; + nixpkgsCommit = "0f5ce2fac0c726036ca69a5524c59a49e2973dd4"; nixpkgsSrc = fetchTarball { - url = "https://github.com/NixOS/nixpkgs-channels/archive/${commit}.tar.gz"; + url = "https://github.com/NixOS/nixpkgs-channels/archive/${nixpkgsCommit}.tar.gz"; sha256 = "0nkk492aa7pr0d30vv1aw192wc16wpa1j02925pldc09s9m9i0r3"; }; nixpkgs = import nixpkgsSrc { @@ -158,7 +158,7 @@ in exposed // { # Provide the source code of nixpkgs, but do not provide an imported # version of it. - inherit nixpkgsSrc stableNixpkgsSrc; + inherit nixpkgsCommit nixpkgsSrc stableNixpkgsSrc; # Packages to be overridden originals = { |