about summary refs log tree commit diff
path: root/pkgs/servers/routinator/default.nix
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-19 19:07:12 -0400
committerfigsoda <figsoda@pm.me>2021-10-19 19:08:14 -0400
commit0fe0a8383513a41bb9bd3d14da44e4f167ea01bd (patch)
treee9db09f0cdcd8225bcdd55ff9ea96499ef01d21b /pkgs/servers/routinator/default.nix
parent0bc8edad70853ca97306019651cfd7b237db62bf (diff)
downloadnixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.tar
nixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.tar.gz
nixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.tar.bz2
nixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.tar.lz
nixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.tar.xz
nixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.tar.zst
nixlib-0fe0a8383513a41bb9bd3d14da44e4f167ea01bd.zip
routinator: remove patch
Diffstat (limited to 'pkgs/servers/routinator/default.nix')
-rw-r--r--pkgs/servers/routinator/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/servers/routinator/default.nix b/pkgs/servers/routinator/default.nix
index 4f85650b87f9..aff0499b98bd 100644
--- a/pkgs/servers/routinator/default.nix
+++ b/pkgs/servers/routinator/default.nix
@@ -1,7 +1,7 @@
 { lib
-, stdenv
-, fetchFromGitHub
 , rustPlatform
+, fetchFromGitHub
+, stdenv
 , Security
 }:
 
@@ -16,18 +16,19 @@ rustPlatform.buildRustPackage rec {
     sha256 = "sha256-ThgTGtTZ0LGm9nHJoy0KhnBFWNvKRjk7hoNTVVTeL/Y=";
   };
 
-  cargoPatches = [
-    ./Cargo.toml.patch
-  ];
   cargoSha256 = "sha256-mcx+qUtTUxeYP0PeJp1eOQwsdS6PPUx/m7TfAyqFiIM=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
 
+  cargoBuildFlags = [ "--no-default-features" "--features=socks" ];
+
+  cargoTestFlags = cargoBuildFlags;
+
   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;
   };
 }