2019-05-30 23:31:28 +02:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "routinator";
|
2019-11-20 16:15:51 +01:00
|
|
|
version = "0.6.2";
|
2019-05-30 23:31:28 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NLnetLabs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2019-11-20 16:15:51 +01:00
|
|
|
sha256 = "0v0j8lv1l7mxxwv7ycissya0rrvjqidb37dylqqy4zvirmk1b2av";
|
2019-05-30 23:31:28 +02:00
|
|
|
};
|
|
|
|
|
2019-11-20 16:15:51 +01:00
|
|
|
cargoSha256 = "19333br2r27s0rsv7imsv2y1j9gmljy4v8bqybvblrw1vc5961kq";
|
2019-05-30 23:31:28 +02: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;
|
|
|
|
};
|
|
|
|
}
|