2021-05-18 11:46:34 +01:00
|
|
|
{ lib, stdenv, slop, ffmpeg, fetchFromGitHub, makeWrapper}:
|
2019-01-20 01:31:41 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "capture-unstable";
|
2019-03-09 19:45:37 +00:00
|
|
|
version = "2019-03-10";
|
2019-01-20 01:31:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "buhman";
|
|
|
|
repo = "capture";
|
2019-03-09 19:45:37 +00:00
|
|
|
rev = "80dd9e7195aad5c132badef610f19509f3935b24";
|
|
|
|
sha256 = "0zyyg4mvrny7cc2xgvfip97b6yc75ka5ni39rwls93971jbk83d6";
|
2019-01-20 01:31:41 +00:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2019-01-20 01:31:41 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 src/capture.sh $out/bin/capture
|
|
|
|
|
|
|
|
patchShebangs $out/bin/capture
|
|
|
|
wrapProgram $out/bin/capture \
|
2021-05-18 11:46:34 +01:00
|
|
|
--prefix PATH : '${lib.makeBinPath [ slop ffmpeg ]}'
|
2019-01-20 01:31:41 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-20 01:31:41 +00:00
|
|
|
description = "A no bullshit screen capture tool";
|
|
|
|
homepage = "https://github.com/buhman/capture";
|
|
|
|
maintainers = [ maintainers.ar1a ];
|
2019-03-09 19:45:37 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2019-01-20 01:31:41 +00:00
|
|
|
};
|
|
|
|
}
|