Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

44 lines
878 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 = {
description = "No bullshit screen capture tool";
homepage = "https://github.com/buhman/capture";
maintainers = [ lib.maintainers.ar1a ];
license = lib.licenses.gpl3Plus;
mainProgram = "capture";
};
}