pb_cli: init at 1.0
This commit is contained in:
parent
50555a6d35
commit
6662708cd0
10
pkgs/tools/misc/pb_cli/0001-eval-fix.patch
Normal file
10
pkgs/tools/misc/pb_cli/0001-eval-fix.patch
Normal file
@ -0,0 +1,10 @@
|
||||
diff --git a/src/pb.sh b/src/pb.sh
|
||||
index be1e472..eb9e6f9 100755
|
||||
--- a/src/pb.sh
|
||||
+++ b/src/pb.sh
|
||||
@@ -61,4 +61,4 @@ pb () {
|
||||
esac
|
||||
}
|
||||
|
||||
-eval " ${0##*/}" "$@"
|
||||
+pb "$@"
|
40
pkgs/tools/misc/pb_cli/default.nix
Normal file
40
pkgs/tools/misc/pb_cli/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ screenshots ? true, video ? false, clipboard ? true
|
||||
, stdenv, pkgs, jq, curl, fetchFromGitHub, makeWrapper, maim ? null, xclip ? null, capture ? null }:
|
||||
|
||||
assert screenshots -> maim != null;
|
||||
assert video -> capture != null;
|
||||
assert clipboard -> xclip != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pb_cli-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ptpb";
|
||||
repo = "pb_cli";
|
||||
rev = "5242382b3d6b5c0ddaf6e4843a69746b40866e57";
|
||||
sha256 = "0543x3377apinhxnsfq82zlp5sm8g1bf6hmsvvcwra5rsshv2ybk";
|
||||
};
|
||||
|
||||
patches = [ ./0001-eval-fix.patch ];
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
liveDeps = [ jq curl ] ++ stdenv.lib.optional screenshots maim
|
||||
++ stdenv.lib.optional video capture
|
||||
++ stdenv.lib.optional clipboard xclip;
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 src/pb.sh $out/bin/pb
|
||||
|
||||
patchShebangs $out/bin/pb
|
||||
wrapProgram $out/bin/pb \
|
||||
--prefix PATH : '${stdenv.lib.makeBinPath liveDeps}'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A no bullshit ptpb client";
|
||||
homepage = "https://github.com/ptpb/pb_cli";
|
||||
maintainers = [ maintainers.ar1a ];
|
||||
};
|
||||
}
|
@ -18711,6 +18711,8 @@ in
|
||||
|
||||
packet = callPackage ../development/tools/packet { };
|
||||
|
||||
pb_cli = callPackage ../tools/misc/pb_cli {};
|
||||
|
||||
pbrt = callPackage ../applications/graphics/pbrt { };
|
||||
|
||||
pcsxr = callPackage ../misc/emulators/pcsxr {
|
||||
|
Loading…
Reference in New Issue
Block a user