nixpkgs/pkgs/servers/routinator/default.nix

24 lines
615 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2019-05-30 22:31:28 +01:00
rustPlatform.buildRustPackage rec {
pname = "routinator";
version = "0.8.3";
2019-05-30 22:31:28 +01:00
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JwPAwhD+Pkx8Kx24m7z/RbEvDnI2YR8dnTgAV7TMsFE=";
2019-05-30 22:31:28 +01:00
};
cargoSha256 = "sha256-lhSSyJxxHc0t43xoDMtr/lSVL0xZl6poPYiyYXNvKKQ=";
2019-05-30 22:31:28 +01:00
meta = with lib; {
2019-05-30 22:31:28 +01:00
description = "An RPKI Validator written in Rust";
homepage = "https://github.com/NLnetLabs/routinator";
license = licenses.bsd3;
2020-07-29 11:49:07 +01:00
maintainers = with maintainers; [ _0x4A6F ];
2019-05-30 22:31:28 +01:00
platforms = platforms.linux;
};
}