about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-20T17·18+0300
committerVincent Ambo <mail@tazj.in>2021-09-21T11·45+0300
commit87c141d3d76185526bb8684cb518f74cf8f878ff (patch)
tree7b50b57626924ff4ff2f90adcdb6df4961acf665 /third_party
parent43b1791ec601732ac31195df96781a848360a9ac (diff)
chore(3p/nixpkgs): Bump channels to 2021-09-20 r/2904
Included fixes:

* grfn/mugwump: removed superfluous Buildkite agent user
* tazjin/camden: Disabled bitlbee (user config is broken)
* grfn/home/vim: vimUtils expects a `pname`
* 3p/nixpkgs: Pick awscli2 from stable channel

Change-Id: I64ed726b3350f75c7a8a0e6552bcf1d8d9ba7d46
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nixpkgs/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/third_party/nixpkgs/default.nix b/third_party/nixpkgs/default.nix
index 94d7415e18..ad60933d54 100644
--- a/third_party/nixpkgs/default.nix
+++ b/third_party/nixpkgs/default.nix
@@ -13,16 +13,16 @@ let
   # nixos-unstable, and the current stable channel of the latest NixOS
   # release.
 
-  # Tracking nixos-unstable as of 2021-09-11.
+  # Tracking nixos-unstable as of 2021-09-20.
   unstableHashes = {
-    commit = "bbbe2b35f736d039884e082ecc6d6e631e126029";
-    sha256 = "09356lp9r1wx311ak6d94bx35xnvj8cabvwqirklylql8q7f52lc";
+    commit = "bc9b956714ed6eac5f8888322aac5bc41389defa";
+    sha256 = "1wbd66h3hszlmdh0mpj0a51jk580aq2xal30wc0lgk78s6sf0rw7";
   };
 
-  # Tracking nixos-21.05 as of 2021-09-11.
+  # Tracking nixos-21.05 as of 2021-09-20.
   stableHashes = {
-    commit = "8b0b81dab17753ab344a44c04be90a61dc55badf";
-    sha256 = "0rj17jpjxjcibcd4qygpxbq79m4px6b35nqq9353pns8w7a984xx";
+    commit = "6120ac5cd201f6cb593d1b80e861be0342495be9";
+    sha256 = "04mrjxr1qsdcgcryx7yy72cgcw14c0770gfcgzrdfpnvmjdgbi9i";
   };
 
   # import the nixos-unstable package set, or optionally use the
@@ -47,7 +47,8 @@ let
   # Overlay for packages that should come from the stable channel
   # instead (e.g. because something is broken in unstable).
   stableOverlay = self: super: {
-    # nothing picked from stable currently
+    # awscli2 broken in unstable (nixpkgs#138470)
+    awscli2 = stableNixpkgs.awscli2;
   };
 
   # Overlay to expose the nixpkgs commits we are using to other Nix code.