File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 66, stdenv
77, systemd
88, systemdSupport ? lib . meta . availableOn stdenv . hostPlatform systemd
9+ , mimalloc
10+ , mimallocSupport ? false
911} :
1012
1113stdenv . 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 = [
You can’t perform that action at this time.
0 commit comments