nixpkgs/pkgs/servers/routinator/default.nix

24 lines
622 B
Nix
Raw Normal View History

2019-05-30 21:31:28 +00:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "routinator";
2020-06-09 20:09:45 +00:00
version = "0.7.1";
2019-05-30 21:31:28 +00:00
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
2020-06-09 20:09:45 +00:00
sha256 = "12fgvalv12v8690pxmsdg179r170d4mc1kynsb25fm0zggy838jn";
2019-05-30 21:31:28 +00:00
};
2020-06-09 20:09:45 +00:00
cargoSha256 = "01118mnb5gm0xqi2c8jj3fk8y55jnnyg9zgn2g4xn7f3i8dcczka";
2019-05-30 21:31:28 +00:00
meta = with stdenv.lib; {
description = "An RPKI Validator written in Rust";
homepage = "https://github.com/NLnetLabs/routinator";
license = licenses.bsd3;
maintainers = [ maintainers."0x4A6F" ];
platforms = platforms.linux;
};
}