aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/routinator
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2019-05-30 21:31:28 +0000
committer0x4A6F <0x4A6F@users.noreply.github.com>2019-07-11 10:49:51 +0000
commit39de81af3d3d3b4edd5ddeedb0e4e145a49bfd13 (patch)
treee84440ebf77d05ca48391eb616893b9f7146daf6 /pkgs/servers/routinator
parentdc336293a166a474d236256f9e196c435d5266a5 (diff)
routinator: init at 0.4.0
Diffstat (limited to 'pkgs/servers/routinator')
-rw-r--r--pkgs/servers/routinator/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/servers/routinator/default.nix b/pkgs/servers/routinator/default.nix
new file mode 100644
index 000000000000..76e469fe6e01
--- /dev/null
+++ b/pkgs/servers/routinator/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "routinator";
+ version = "0.4.0";
+
+ src = fetchFromGitHub {
+ owner = "NLnetLabs";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0ldnak1jszfkwya0aci7ns3293y45jp7iirilnqypklsmmm108r4";
+ };
+
+ cargoSha256 = "0yx5sanblalh5q06cn0mrf5bc5518y1awmvyi5yhh55cz6bg6h1m";
+
+ 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;
+ };
+}