krill 0.12.3 -> 0.13.0 https://github.com/NLnetLabs/krill/releases attrpath: krill Checking auto update branch... No auto update branch exists Old version 0.12.3" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , openssl , pkg-config , stdenv , Security }: rustPlatform.buildRustPackage rec { pname = "krill"; version = "0.13.0"; src = fetchFromGitHub { owner = "NLnetLabs"; repo = pname; rev = "v${version}"; hash = "sha256-Vyz2PpsCcmr3EJRe9IOY3rpwEzHfG1IelXsy2qzjSJA="; }; cargoHash = "sha256-X4PvoN2KszMYmQjErZQPUCr8WAIt8S+S1QeMlYyv8NU="; 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/releases/tag/v${version}"; license = licenses.mpl20; maintainers = with maintainers; [ steamwalker ]; }; }