mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
routinator: remove patch
This commit is contained in:
parent
0bc8edad70
commit
0fe0a83835
@ -1,13 +0,0 @@
|
|||||||
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,7 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
|
||||||
, fetchFromGitHub
|
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, stdenv
|
||||||
, Security
|
, Security
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -16,18 +16,19 @@ rustPlatform.buildRustPackage rec {
|
|||||||
sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y=";
|
sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoPatches = [
|
|
||||||
./Cargo.toml.patch
|
|
||||||
];
|
|
||||||
cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM=";
|
cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
|
cargoBuildFlags = [ "--no-default-features" "--features=socks" ];
|
||||||
|
|
||||||
|
cargoTestFlags = cargoBuildFlags;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "An RPKI Validator written in Rust";
|
description = "An RPKI Validator written in Rust";
|
||||||
homepage = "https://github.com/NLnetLabs/routinator";
|
homepage = "https://github.com/NLnetLabs/routinator";
|
||||||
|
changelog = "https://github.com/NLnetLabs/routinator/blob/v${version}/Changelog.md";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ _0x4A6F ];
|
maintainers = with maintainers; [ _0x4A6F ];
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user