routinator: 0.10.0 -> 0.10.1
(cherry picked from commit 01af935180289b3c3dde5add60b88392bcafeb4b)
This commit is contained in:
parent
abed7897c8
commit
13c798e8e7
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/Cargo.toml b/Cargo.toml
|
||||||
|
index 7f07b3b..7d7af0a 100644
|
||||||
|
--- a/Cargo.toml
|
||||||
|
+++ b/Cargo.toml
|
||||||
|
@@ -48,7 +48,7 @@ syslog = "5.0.0"
|
||||||
|
rustc_version = "0.4.0"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
-default = [ "socks", "ui"]
|
||||||
|
+default = [ "socks" ]
|
||||||
|
extra-debug = ["rpki/extra-debug"]
|
||||||
|
socks = [ "reqwest/socks" ]
|
||||||
|
rta = []
|
|
@ -1,18 +1,27 @@
|
||||||
{ stdenv, lib, fetchFromGitHub, rustPlatform, Security }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "routinator";
|
pname = "routinator";
|
||||||
version = "0.10.0";
|
version = "0.10.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "NLnetLabs";
|
owner = "NLnetLabs";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "171zmqqkgdpbspn70sgsypnyw7m6q2x8izwxrzbyi5xslsgd24i4";
|
sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cargoPatches = [
|
||||||
|
./Cargo.toml.patch
|
||||||
|
];
|
||||||
|
cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||||
cargoSha256 = "0r1m1zv3mkmmaalln3ny6m33dyjqzdyfbmkcav05kz12xjdd94fs";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "An RPKI Validator written in Rust";
|
description = "An RPKI Validator written in Rust";
|
||||||
|
|
Loading…
Reference in New Issue