nixpkgs-suyu/pkgs/servers/routinator/default.nix

24 lines
627 B
Nix
Raw Normal View History

2019-05-30 23:31:28 +02:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "routinator";
2020-06-09 22:09:45 +02:00
version = "0.7.1";
2019-05-30 23:31:28 +02:00
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
2020-06-09 22:09:45 +02:00
sha256 = "12fgvalv12v8690pxmsdg179r170d4mc1kynsb25fm0zggy838jn";
2019-05-30 23:31:28 +02:00
};
2020-06-09 22:09:45 +02:00
cargoSha256 = "01118mnb5gm0xqi2c8jj3fk8y55jnnyg9zgn2g4xn7f3i8dcczka";
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;
2020-07-29 12:49:07 +02:00
maintainers = with maintainers; [ _0x4A6F ];
2019-05-30 23:31:28 +02:00
platforms = platforms.linux;
};
}