nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

gping: 1.17.3 -> 1.18.0

authored by

R. Ryantm and committed by
Nick Cao
b143a809 cd43d686

+16 -19
+15 -16
pkgs/tools/networking/gping/default.nix
··· 1 - { lib 2 - , stdenv 3 - , rustPlatform 4 - , fetchFromGitHub 5 - , installShellFiles 6 - , libiconv 7 - , Security 8 - , iputils 1 + { 2 + lib, 3 + stdenv, 4 + rustPlatform, 5 + fetchFromGitHub, 6 + installShellFiles, 7 + iputils, 8 + versionCheckHook, 9 9 }: 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "gping"; 13 - version = "1.17.3"; 13 + version = "1.18.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "orf"; 17 17 repo = "gping"; 18 18 rev = "gping-v${version}"; 19 - hash = "sha256-DJ+5WoizFF3K9drFc955bDMXnlW+okYrZos/+dRVtjw="; 19 + hash = "sha256-JZMgbCwEGfngCQVmuZX1tu3he/f/TBLitcP/Ea3S6yI="; 20 20 }; 21 21 22 - cargoHash = "sha256-pQ95sS2dGVzZUOyuUpJPamW7RLiUTGu9KgpWLg4wn/w="; 23 - 24 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv Security ]; 22 + cargoHash = "sha256-I9rcC2sotrdHMCCiDgfycKRnJxZLuA5OLZPZC0zFiLc="; 25 23 26 24 nativeBuildInputs = [ installShellFiles ]; 27 25 ··· 30 32 ''; 31 33 32 34 doInstallCheck = true; 33 - installCheckPhase = '' 34 - $out/bin/gping --version | grep "${version}" 35 - ''; 35 + 36 + nativeInstallCheckInputs = [ versionCheckHook ]; 37 + 38 + versionCheckProgramArg = [ "--version" ]; 36 39 37 40 meta = with lib; { 38 41 description = "Ping, but with a graph";
+1 -3
pkgs/top-level/all-packages.nix
··· 2446 2446 inherit (darwin) libobjc libresolv; 2447 2447 }; 2448 2448 2449 - gping = callPackage ../tools/networking/gping { 2450 - inherit (darwin.apple_sdk.frameworks) Security; 2451 - }; 2449 + gping = callPackage ../tools/networking/gping { }; 2452 2450 2453 2451 greg = callPackage ../applications/audio/greg { 2454 2452 pythonPackages = python3Packages;