blob: 2eaed397be801b73ec148138d573635a31a83f7d (
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
42
43
|
{
lib,
fetchFromGitHub,
stdenv,
cmake,
libssh,
openssl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rtrlib";
version = "0.8.0";
src = fetchFromGitHub {
repo = "rtrlib";
owner = "rtrlib";
rev = "v${finalAttrs.version}";
sha256 = "sha256-ISb4ojcDvXY/88GbFMrA5V5+SGE6CmE5D+pokDTwotQ=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
libssh
openssl
];
cmakeFlags = [
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
];
postFixup = ''
substituteInPlace "$out"/lib/pkgconfig/rtrlib.pc \
--replace '=''${prefix}//' '=/'
'';
meta = {
description = "Open-source C implementation of the RPKI/Router Protocol client";
homepage = "https://github.com/rtrlib/rtrlib";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Anillc ];
platforms = lib.platforms.all;
};
})
|