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/openssl

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