fetchsvnssh
pkgs.fetchsvnssh
Functor
Docs pulled from | This Revision | about 1 hour ago
Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.
Noogle detected
This is a Functor
Learn about functors
Implementation
The following is the current implementation of this function.
{
username,
password,
url,
rev ? "HEAD",
outputHash ? lib.fakeHash,
outputHashAlgo ? null,
}:
lib.fetchers.withNormalizedHash { } (
stdenvNoCC.mkDerivation {
name = "svn-export-ssh";
builder = ./builder.sh;
nativeBuildInputs = [
subversion
expect
];
inherit outputHash outputHashAlgo;
outputHashMode = "recursive";
sshSubversion = ./sshsubversion.exp;
inherit
username
password
url
rev
sshSupport
openssh
;
}
)