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";
2019-11-28 11:46:19 +00:00
version = "0.6.4";
2019-05-30 21:31:28 +00:00
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
2019-11-28 11:46:19 +00:00
sha256 = "1hbqvjv9h1aghpyrl03w5f4j8gjy6n9lx83rmpsh5p7yd9ahwmf9";
2019-05-30 21:31:28 +00:00
};
cargoSha256 = "1chf1l9jlnhi9cyqpmcz8yfzwzmkn4lfxqhdhclvl8j4b2zvbcgc";
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;
};
}