tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ike-scan: 1.9.5 -> 1.9.5-unstable-2024-09-15
Fabian Affolter
10 months ago
6dea73eb
dcb241e9
+12
-12
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ik
ike-scan
package.nix
+12
-12
pkgs/by-name/ik/ike-scan/package.nix
reviewed
···
9
9
10
10
stdenv.mkDerivation rec {
11
11
pname = "ike-scan";
12
12
-
version = "1.9.5";
12
12
+
version = "1.9.5-unstable-2024-09-15";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "royhills";
16
16
repo = "ike-scan";
17
17
-
rev = version;
18
18
-
sha256 = "sha256-mbfg8p3y4aKoXpmLuF9GXAMPEqV5CsvetwGCRDJ9UNY=";
17
17
+
rev = "c74c01fd22d9a3aae3d8ba9a0bd2eb1a2146ac6f";
18
18
+
hash = "sha256-+eicvirqzZrAJiaGaVjqZlSpU2+jTG/MRPv50P+1Tpc=";
19
19
};
20
20
21
21
-
nativeBuildInputs = [
22
22
-
autoreconfHook
23
23
-
openssl
24
24
-
];
25
25
-
26
26
-
configureFlags = [ "--with-openssl=${openssl.dev}" ];
27
27
-
28
21
patches = [
29
22
# Using the same patches as for the Fedora RPM
30
23
(fetchpatch {
31
24
# Memory leaks, https://github.com/royhills/ike-scan/pull/15
32
25
url = "https://github.com/royhills/ike-scan/pull/15/commits/d864811de08dcddd65ac9b8d0f2acf5d7ddb9dea.patch";
33
33
-
sha256 = "0wbrq89dl8js7cdivd0c45hckmflan33cpgc3qm5s3az6r4mjljm";
26
26
+
hash = "sha256-VVJZSTZfDV0qHuxdNoZV1NXJYCEMtB0bO1oi2hLCeXE=";
34
27
})
35
28
];
36
29
30
30
+
nativeBuildInputs = [
31
31
+
autoreconfHook
32
32
+
openssl
33
33
+
];
34
34
+
35
35
+
configureFlags = [ "--with-openssl=${openssl.dev}" ];
36
36
+
37
37
meta = with lib; {
38
38
description = "Tool to discover, fingerprint and test IPsec VPN servers";
39
39
longDescription = ''
···
41
41
fingerprint and test IPsec VPN servers.
42
42
'';
43
43
homepage = "https://github.com/royhills/ike-scan";
44
44
-
license = with licenses; [ gpl3Plus ];
44
44
+
license = licenses.gpl3Plus;
45
45
platforms = platforms.linux;
46
46
maintainers = with maintainers; [ fab ];
47
47
};