forked from mirrors/nixpkgs
prettyping: init 1.0.1 (#46008)
This commit is contained in:
parent
856b891765
commit
7e0dd4c261
25
pkgs/tools/networking/prettyping/default.nix
Normal file
25
pkgs/tools/networking/prettyping/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, lib, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${program}-${version}";
|
||||
program = "prettyping";
|
||||
version = "1.0.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "denilsonsa";
|
||||
repo = program;
|
||||
rev = "v${version}";
|
||||
sha256 = "05vfaq9y52z40245j47yjk1xaiwrazv15sgjq64w91dfyahjffxf";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -Dt $out/bin prettyping
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/denilsonsa/prettyping;
|
||||
description = "A wrapper around the standard ping tool with the objective of making the output prettier, more colorful, more compact, and easier to read";
|
||||
license = with licenses; [ mit ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ qoelet ];
|
||||
};
|
||||
}
|
|
@ -4738,6 +4738,8 @@ with pkgs;
|
|||
|
||||
pptpd = callPackage ../tools/networking/pptpd {};
|
||||
|
||||
prettyping = callPackage ../tools/networking/prettyping { };
|
||||
|
||||
prey-bash-client = callPackage ../tools/security/prey { };
|
||||
|
||||
profile-cleaner = callPackage ../tools/misc/profile-cleaner { };
|
||||
|
|
Loading…
Reference in a new issue