Skip to content

Commit

Permalink
busybox: 1.32.0 -> 1.32.1
Browse files Browse the repository at this point in the history
Fixes #108675, a tty deadlock issue that affected one of the
texinfoInteractive tests.

Co-Authored-By: Sandro <[email protected]>
  • Loading branch information
raboof and SuperSandro2000 committed Jan 8, 2021
1 parent 2a7b8c1 commit ac24eaf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/os-specific/linux/busybox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
Expand Down

0 comments on commit ac24eaf

Please sign in to comment.