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
44 lines
880 B
Nix
44 lines
880 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
slop,
|
|
ffmpeg,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "capture-unstable";
|
|
version = "2019-03-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "buhman";
|
|
repo = "capture";
|
|
rev = "80dd9e7195aad5c132badef610f19509f3935b24";
|
|
sha256 = "0zyyg4mvrny7cc2xgvfip97b6yc75ka5ni39rwls93971jbk83d6";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
install -Dm755 src/capture.sh $out/bin/capture
|
|
|
|
patchShebangs $out/bin/capture
|
|
wrapProgram $out/bin/capture \
|
|
--prefix PATH : '${
|
|
lib.makeBinPath [
|
|
slop
|
|
ffmpeg
|
|
]
|
|
}'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "No bullshit screen capture tool";
|
|
homepage = "https://github.com/buhman/capture";
|
|
maintainers = [ maintainers.ar1a ];
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "capture";
|
|
};
|
|
}
|