summary refs log tree commit diff
path: root/pkgs/os-specific/linux/busybox/default.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-10-12 09:46:21 +0000
committerAlyssa Ross <hi@alyssa.is>2021-10-12 09:46:21 +0000
commita24951ed7b834a3be6d59a767f7e69316547484d (patch)
tree2bea9370a41d37be4221a4e1212d83e6a2e623bb /pkgs/os-specific/linux/busybox/default.nix
parentde028aa6032018d92d54defd1872873164e592be (diff)
downloadnixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.tar
nixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.tar.gz
nixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.tar.bz2
nixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.tar.lz
nixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.tar.xz
nixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.tar.zst
nixpkgs-a24951ed7b834a3be6d59a767f7e69316547484d.zip
busybox: 1.33.1 -> 1.34.1; adopt
Tested rebuilding the bootstrap tools.
Diffstat (limited to 'pkgs/os-specific/linux/busybox/default.nix')
-rw-r--r--pkgs/os-specific/linux/busybox/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix
index 4949cd7c14a..40d44690afe 100644
--- a/pkgs/os-specific/linux/busybox/default.nix
+++ b/pkgs/os-specific/linux/busybox/default.nix
@@ -49,14 +49,14 @@ in
 
 stdenv.mkDerivation rec {
   pname = "busybox";
-  version = "1.33.1";
+  version = "1.34.1";
 
   # Note to whoever is updating busybox: please verify that:
   # nix-build pkgs/stdenv/linux/make-bootstrap-tools.nix -A test
   # still builds after the update.
   src = fetchurl {
     url = "https://busybox.net/downloads/${pname}-${version}.tar.bz2";
-    sha256 = "0a0dcvsh7nxnhxc5y73fky0z30i9p7r30qfidm2akn0n5fywdkhj";
+    sha256 = "0jfm9fik7nv4w21zqdg830pddgkdjmplmna9yjn9ck1lwn4vsps1";
   };
 
   hardeningDisable = [ "format" "pie" ]
@@ -135,7 +135,7 @@ stdenv.mkDerivation rec {
     description = "Tiny versions of common UNIX utilities in a single small executable";
     homepage = "https://busybox.net/";
     license = licenses.gpl2Only;
-    maintainers = with maintainers; [ TethysSvensson ];
+    maintainers = with maintainers; [ TethysSvensson qyliss ];
     platforms = platforms.linux;
     priority = 10;
   };