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

6
flake.lock generated
View file

@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1739020877,
"narHash": "sha256-mIvECo/NNdJJ/bXjNqIh8yeoSjVLAuDuTUzAo7dzs8Y=",
"lastModified": 1742669843,
"narHash": "sha256-G5n+FOXLXcRx+3hCJ6Rt6ZQyF1zqQ0DL0sWAMn2Nk0w=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a79cfe0ebd24952b580b1cf08cd906354996d547",
"rev": "1e5b653dff12029333a6546c11e108ede13052eb",
"type": "github"
},
"original": {

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"

View file

@ -1,5 +1,6 @@
{
lib,
pkgs,
stdenv,
fetchurl,
perl,
@ -18,13 +19,9 @@
stdenv.mkDerivation rec {
pname = "openssl";
version = "3.4.1";
hash = "sha256-ACotazC1i/S+pGxDvdljZar42qbEKHgqpP7uBtoZffM=";
version = pkgs.openssl.version;
src = fetchurl {
url = "https://github.com/openssl/openssl/releases/download/openssl-${version}/openssl-${version}.tar.gz";
hash = hash;
};
src = pkgs.openssl.src;
outputs = [ "out" ];