1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

busybox: 1.27.1 -> 1.27.2

This commit is contained in:
Tim Steinbach 2017-08-21 03:11:00 -04:00
parent 6bbc3a0b24
commit 746979e0fc
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA

View file

@ -27,11 +27,14 @@ let
in
stdenv.mkDerivation rec {
name = "busybox-1.27.1";
name = "busybox-1.27.2";
# 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 = "http://busybox.net/downloads/${name}.tar.bz2";
sha256 = "0dprylmcignrp29g41nkwr1b30v7i5x21lwymp3b93i1zd9sr468";
sha256 = "1pv3vs2w4l2wnw5qb0rkbpvjjdd1fwjv87miavqq0r0ynqbfajwx";
};
hardeningDisable = [ "format" ] ++ lib.optional enableStatic [ "fortify" ];