nixpkgs/pkgs/servers/routinator/default.nix

24 lines
626 B
Nix
Raw Normal View History

2019-05-30 22:31:28 +01:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "routinator";
2020-11-30 10:13:18 +00:00
version = "0.8.1";
2019-05-30 22:31:28 +01:00
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
2020-11-30 10:13:18 +00:00
sha256 = "sha256-yH43FPeMohN6zpzEcLpbFBvO8Wz4IjuWRmsE19C7NIA=";
2019-05-30 22:31:28 +01:00
};
2020-11-30 10:13:18 +00:00
cargoSha256 = "14cbkvcvbjgc308lh1yj0715rnl035r5qwvfsip17xk5j3y8w1xr";
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;
};
}