busybox: 1.27.1 -> 1.27.2

+5 -2
+5 -2
pkgs/os-specific/linux/busybox/default.nix
··· 27 in 28 29 stdenv.mkDerivation rec { 30 - name = "busybox-1.27.1"; 31 32 src = fetchurl { 33 url = "http://busybox.net/downloads/${name}.tar.bz2"; 34 - sha256 = "0dprylmcignrp29g41nkwr1b30v7i5x21lwymp3b93i1zd9sr468"; 35 }; 36 37 hardeningDisable = [ "format" ] ++ lib.optional enableStatic [ "fortify" ];
··· 27 in 28 29 stdenv.mkDerivation rec { 30 + name = "busybox-1.27.2"; 31 32 + # Note to whoever is updating busybox: please verify that: 33 + # nix-build pkgs/stdenv/linux/make-bootstrap-tools.nix -A test 34 + # still builds after the update. 35 src = fetchurl { 36 url = "http://busybox.net/downloads/${name}.tar.bz2"; 37 + sha256 = "1pv3vs2w4l2wnw5qb0rkbpvjjdd1fwjv87miavqq0r0ynqbfajwx"; 38 }; 39 40 hardeningDisable = [ "format" ] ++ lib.optional enableStatic [ "fortify" ];