Merge pull request #152487 from steamwalker/krill

krill: init at 0.9.4
This commit is contained in:
legendofmiracles 2022-01-01 09:40:54 -06:00 committed by GitHub
commit b1df4e1c6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 0 deletions

View file

@ -11184,6 +11184,12 @@
githubId = 7512804;
name = "Martin Langlotz";
};
steamwalker = {
email = "steamwalker@xs4all.nl";
github = "steamwalker";
githubId = 94006354;
name = "steamwalker";
};
steell = {
email = "steve@steellworks.com";
github = "Steell";

View file

@ -0,0 +1,42 @@
{ lib
, rustPlatform
, fetchFromGitHub
, openssl
, pkg-config
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "krill";
version = "0.9.4";
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
hash = "sha256:1w5s4vmr126k5lnxsv3hfxx1yz2c1gp3hmwfz5jn4lar78r5kidy";
};
cargoSha256 = "sha256:0ksh68giq3yd8k7vynxdl13ccysl6i5ag2nz9nknbnrvpv201c88";
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ pkg-config ];
# Needed to get openssl-sys to use pkgconfig.
OPENSSL_NO_VENDOR = 1;
meta = with lib; {
description = "RPKI Certificate Authority and Publication Server written in Rust";
longDescription = ''
Krill is a free, open source RPKI Certificate Authority that lets you run
delegated RPKI under one or multiple Regional Internet Registries (RIRs).
Through its built-in publication server, Krill can publish Route Origin
Authorisations (ROAs) on your own servers or with a third party.
'';
homepage = "https://github.com/NLnetLabs/krill";
changelog = "https://github.com/NLnetLabs/krill/blob/v${version}/Changelog.md";
license = licenses.mpl20;
maintainers = with maintainers; [ steamwalker ];
};
}

View file

@ -3307,6 +3307,10 @@ with pkgs;
krapslog = callPackage ../tools/misc/krapslog { };
krill = callPackage ../servers/krill {
inherit (darwin.apple_sdk.frameworks) Security;
};
lcdproc = callPackage ../servers/monitoring/lcdproc { };
languagetool = callPackage ../tools/text/languagetool { };