fetchsvn: enable strictDeps, enable structuredAttrs

This commit is contained in:
Stefan Frijters
2026-08-13 23:09:11 +02:00
parent a129a69a7f
commit b38dac0c55

View File

@@ -66,7 +66,12 @@ else
]
++ lib.optional sshSupport openssh;
SVN_SSH = if sshSupport then "${buildPackages.openssh}/bin/ssh" else null;
strictDeps = true;
__structuredAttrs = true;
env = lib.optionalAttrs sshSupport {
SVN_SSH = lib.getExe buildPackages.openssh;
};
outputHashAlgo = if hash != "" then null else "sha256";
outputHashMode = "recursive";