blob: a2d6fcef99c342c1ee762a53048ee929f5e7165d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
stdenvNoCC,
subversion,
sshSupport ? true,
openssh ? null,
expect,
}:
{
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
;
}
)
|