2019-05-30 22:31:28 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "routinator";
|
2020-09-23 16:02:04 +01:00
|
|
|
version = "0.8.0";
|
2019-05-30 22:31:28 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NLnetLabs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-09-23 16:02:04 +01:00
|
|
|
sha256 = "1lldrb469vc7l6bkwgxz38n7lyxh74cb88xak5r0sjm1ip5q0glp";
|
2019-05-30 22:31:28 +01:00
|
|
|
};
|
|
|
|
|
2020-09-23 16:02:04 +01:00
|
|
|
cargoSha256 = "sha256:19yzx9h02cx5dldliaq814n84f8w0s3nbyjk3pgia2siim5mdv94";
|
2019-05-30 22:31:28 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|