We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c947908 commit 80c434fCopy full SHA for 80c434f
nix/package-sets/top-level/scale-network/rperf/package.nix
@@ -1,10 +1,8 @@
1
{
2
- pkgs,
3
- libs,
4
- stdenv,
5
fetchFromGitHub,
+ rustPlatform,
6
}:
7
-pkgs.rustPlatform.buildRustPackage {
+rustPlatform.buildRustPackage {
8
pname = "rperf";
9
version = "0.1.23";
10
checkType = "debug";
@@ -16,14 +14,7 @@ pkgs.rustPlatform.buildRustPackage {
16
14
hash = "sha256-gTdp7LpPwWi6hUu62hMPYbdaLCdQNWPl/VxIrE91vww=";
17
15
};
18
19
- nativeBuildInputs = with rustPlatform; [
20
- rustc
21
- cargo
22
- ];
23
- cargoHash = libs.fakeHash;
24
- cargoBuildFlags = [
25
- "--release"
26
+ cargoHash = "sha256-itstgUiASkSlPFbMmKRIEVebApYBDDQT8GRghbeheLA=";
27
28
meta = {
29
description = "A Rust implementation of the iperf3 tool.";
0 commit comments