summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2021-11-09 22:04:20 +0100
committer0x4A6F <0x4A6F@users.noreply.github.com>2021-11-29 19:39:49 +0100
commitbc3e4c972b5ebdf4ea9fcc325f178fd8d2c57cd4 (patch)
tree0ed00eaf2da945a87799179a811f7a1a4071fcc6
parentMerge pull request #147723 from helsinki-systems/bkp/21.05/php (diff)
downloadnixpkgs-bc3e4c972b5ebdf4ea9fcc325f178fd8d2c57cd4.tar.gz
routinator: 0.10.1 -> 0.10.2
(cherry picked from commit a5f1139b5423c818b8fd5fe58c6cff43ae29a134)
-rw-r--r--pkgs/servers/routinator/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/servers/routinator/default.nix b/pkgs/servers/routinator/default.nix
index 4f85650b87f9..a4c7bc299b43 100644
--- a/pkgs/servers/routinator/default.nix
+++ b/pkgs/servers/routinator/default.nix
@@ -1,33 +1,36 @@
{ lib
-, stdenv
-, fetchFromGitHub
, rustPlatform
+, fetchFromGitHub
+, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "routinator";
- version = "0.10.1";
+ version = "0.10.2";
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y=";
+ sha256 = "0a2iwpmljkha6qlbw0373wph7pxz05qym5712vzbszw0z42f82l2";
};
cargoPatches = [
./Cargo.toml.patch
];
- cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM=";
+ cargoSha256 = "0l3fhwgrdvjrlmiqdy90sfd8kb2s7y0lbfswlrr560ly0bi1lfbx";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+ buildNoDefaultFeatures = true;
+ buildFeatures = [ "socks" ];
+
meta = with lib; {
description = "An RPKI Validator written in Rust";
homepage = "https://github.com/NLnetLabs/routinator";
+ changelog = "https://github.com/NLnetLabs/routinator/blob/v${version}/Changelog.md";
license = licenses.bsd3;
maintainers = with maintainers; [ _0x4A6F ];
- platforms = platforms.all;
};
}