3
0
Fork 0
forked from mirrors/nixpkgs

prettyping: init 1.0.1 (#46008)

This commit is contained in:
Kenny Shen 2018-09-05 05:52:55 +00:00 committed by xeji
parent 856b891765
commit 7e0dd4c261
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };