summary refs log tree commit diff
path: root/pkgs/os-specific/linux/busybox/default.nix
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2021-01-07 19:56:22 +0100
committerArnout Engelen <arnout@bzzt.net>2021-01-08 09:42:46 +0100
commitac24eaff9e9389d9504edf9467c0a8df39b5f66b (patch)
treec04c40e60570f8ec3e991f489e73bc74f916d38e /pkgs/os-specific/linux/busybox/default.nix
parent2a7b8c123e81be71b5a1102113def388a23befc1 (diff)
downloadnixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.tar
nixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.tar.gz
nixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.tar.bz2
nixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.tar.lz
nixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.tar.xz
nixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.tar.zst
nixpkgs-ac24eaff9e9389d9504edf9467c0a8df39b5f66b.zip
busybox: 1.32.0 -> 1.32.1
Fixes #108675, a tty deadlock issue that affected one of the
texinfoInteractive tests.

Co-Authored-By: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/os-specific/linux/busybox/default.nix')
-rw-r--r--pkgs/os-specific/linux/busybox/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix
index 99909e6262e..c157c492043 100644
--- a/pkgs/os-specific/linux/busybox/default.nix
+++ b/pkgs/os-specific/linux/busybox/default.nix
@@ -48,14 +48,15 @@ let
 in
 
 stdenv.mkDerivation rec {
-  name = "busybox-1.32.0";
+  pname = "busybox";
+  version = "1.32.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/${name}.tar.bz2";
-    sha256 = "w12H8dBLKxU9M8J1wmMuQNOIqI8ZqecXJ+C7v/Uf5ok=";
+    url = "https://busybox.net/downloads/${pname}-${version}.tar.bz2";
+    sha256 = "1vhd59qmrdyrr1q7rvxmyl96z192mxl089hi87yl0hcp6fyw8mwx";
   };
 
   hardeningDisable = [ "format" "pie" ]