Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

44 lines
863 B
Nix

{
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;
};
})