Skip to content

Commit 4ed78d3

Browse files
authored
stunnel: 5.72 -> 5.73 (#348424)
2 parents ba2f9f2 + 89a50c3 commit 4ed78d3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/by-name/st/stunnel/package.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@
66
, stdenv
77
, systemd
88
, systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd
9+
, mimalloc
10+
, mimallocSupport ? false
911
}:
1012

1113
stdenv.mkDerivation (finalAttrs: {
1214
pname = "stunnel";
13-
version = "5.72";
15+
version = "5.73";
1416

1517
outputs = [ "out" "doc" "man" ];
1618

1719
src = fetchurl {
1820
url = "https://www.stunnel.org/archive/${lib.versions.major finalAttrs.version}.x/stunnel-${finalAttrs.version}.tar.gz";
19-
hash = "sha256-PVMpQSga41MxlzUUTkrbmuSJoQt+MJxYpIFX8I9C6Uk=";
21+
hash = "sha256-vJF8O82UOk1jI2DAZ5d6MeheOF9fSEX2l0m86IGDyzg=";
2022
# please use the contents of "https://www.stunnel.org/downloads/stunnel-${version}.tar.gz.sha256",
2123
# not the output of `nix-prefetch-url`
2224
};
@@ -27,6 +29,8 @@ stdenv.mkDerivation (finalAttrs: {
2729
openssl
2830
] ++ lib.optionals systemdSupport [
2931
systemd
32+
] ++ lib.optionals mimallocSupport [
33+
mimalloc
3034
];
3135

3236
configureFlags = [

0 commit comments

Comments
 (0)