Files
nixpkgs/pkgs/by-name/pb/pb_cli/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

57 lines
1.1 KiB
Nix

{
screenshots ? true,
video ? false,
clipboard ? true,
lib,
stdenv,
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 {
pname = "pb_cli-unstable";
version = "2019-03-10";
src = fetchFromGitHub {
owner = "ptpb";
repo = "pb_cli";
rev = "6b9ce1ee45fe651d06d7c479a20026a173dd328b";
sha256 = "0w6a789zffvz4ixsb92q45n5s4xyx7s2l2f07972i3dajaaai8z7";
};
nativeBuildInputs = [ makeWrapper ];
liveDeps = [
jq
curl
]
++ lib.optional screenshots maim
++ lib.optional video capture
++ lib.optional clipboard xclip;
installPhase = ''
install -Dm755 src/pb.sh $out/bin/pb
patchShebangs $out/bin/pb
wrapProgram $out/bin/pb \
--prefix PATH : '${lib.makeBinPath liveDeps}'
'';
meta = with lib; {
description = "No bullshit 0x0.st client";
homepage = "https://github.com/ptpb/pb_cli";
maintainers = [ maintainers.ar1a ];
license = licenses.gpl3Plus;
mainProgram = "pb";
};
}