depot/third_party/nixpkgs/pkgs/tools/misc/zthrottle/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

28 lines
723 B
Nix

{ lib, stdenv, fetchFromGitHub, zsh }:
stdenv.mkDerivation rec {
pname = "zthrottle";
version = "unstable-2017-7-24";
src = fetchFromGitHub {
owner = "anko";
repo = pname;
rev = "f62066661e49375baeb891fa8e43ad4527cbd0a0";
sha256 = "1ipvwmcsigzmxlg7j22cxpvdcgqckkmfpsnvzy18nbybd5ars9l5";
};
buildInputs = [ zsh ];
installPhase = ''
install -D zthrottle $out/bin/zthrottle
'';
meta = with lib; {
description = "Program that throttles a pipeline, only letting a line through at most every $1 seconds";
homepage = "https://github.com/anko/zthrottle";
license = licenses.unlicense;
maintainers = [ ];
platforms = platforms.unix;
mainProgram = "zthrottle";
};
}