mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
35 lines
834 B
Nix
35 lines
834 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "netselect";
|
|
version = "0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apenwarr";
|
|
repo = "netselect";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "1zncyvjzllrjbdvz7c50d1xjyhs9mwqfy92ndpfc5b3mxqslw4kx";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace netselect-apt \
|
|
--replace "/usr/bin/" ""
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm555 -t $out/bin netselect netselect-apt
|
|
install -Dm444 -t $out/share/man/man1 *.1
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/apenwarr/netselect";
|
|
description = "Ultrafast intelligent parallelizing binary-search implementation of \"ping\"";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|