chore: nix flake update

This commit is contained in:
Lars Sjöström 2025-03-26 11:13:16 +01:00
parent bb708e3e61
commit 242294eb8d
No known key found for this signature in database
3 changed files with 9 additions and 14 deletions
pkgs/busybox

View file

@ -1,6 +1,7 @@
{
stdenv,
lib,
pkgs,
buildPackages,
fetchurl,
fetchpatch,
@ -57,15 +58,12 @@ in
stdenv.mkDerivation rec {
pname = "busybox";
version = "1.36.1";
version = pkgs.busybox.version;
# 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/${pname}-${version}.tar.bz2";
sha256 = "sha256-uMwkyVdNgJ5yecO+NJeVxdXOtv3xnKcJ+AzeUOR94xQ=";
};
src = pkgs.busybox.src;
hardeningDisable = [
"format"