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-09-10 15:39:30 +00:00
version = "0.6.0";
2019-05-30 21:31:28 +00:00
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
2019-09-10 15:39:30 +00:00
sha256 = "13xfnlaqjisi9fm1p7ydhgrh86ccbfwkxbnrv8abdx80jwb0lm15";
2019-05-30 21:31:28 +00:00
};
2019-09-10 15:39:30 +00:00
cargoSha256 = "13sx7mbirhrd0is7gvnk0mir5qizbhrlvsn0v55ibf3bybjsb644";
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;
};
}