Merge pull request #108708 from raboof/busybox-1.32.0-to-1.32.1

busybox: 1.32.0 -> 1.32.1
This commit is contained in:
Sandro 2021-01-10 02:27:43 +01:00 committed by GitHub
commit 66dc4881b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" ]