krill: 0.10.0 -> 0.11.0

This commit is contained in:
Bobby Rong 2022-10-22 15:58:51 +08:00 committed by GitHub
commit 35249d6491
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "krill"; pname = "krill";
version = "0.10.0"; version = "0.11.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "NLnetLabs"; owner = "NLnetLabs";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-gObwFPpBYhg9Hp+0/gRugZXktw5ob4T6w0uwbHQO7hU="; hash = "sha256-0b8db5WYYHean+Ra2KNrLJcv5p7ofClX7So9qwhz6WQ=";
}; };
cargoSha256 = "sha256-xWjx4ngCrsKMQ8PYW2ibXBZZYWLKIXVIAl9p3mKlpwo="; cargoSha256 = "sha256-Ju71IyID6ZcKpU1RGJtwj4niORsnUaRfDfJArptjCF4=";
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec {
Authorisations (ROAs) on your own servers or with a third party. Authorisations (ROAs) on your own servers or with a third party.
''; '';
homepage = "https://github.com/NLnetLabs/krill"; homepage = "https://github.com/NLnetLabs/krill";
changelog = "https://github.com/NLnetLabs/krill/blob/v${version}/Changelog.md"; changelog = "https://github.com/NLnetLabs/krill/releases/tag/v${version}";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ steamwalker ]; maintainers = with maintainers; [ steamwalker ];
}; };