nixpkgs/pkgs/tools/misc/capture/default.nix

31 lines
819 B
Nix
Raw Normal View History

2019-01-20 01:31:41 +00:00
{ stdenv, pkgs, slop, ffmpeg, fetchFromGitHub, makeWrapper}:
stdenv.mkDerivation rec {
2019-03-09 19:45:37 +00:00
name = "capture-unstable-${version}";
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
};
buildInputs = [ makeWrapper ];
installPhase = ''
install -Dm755 src/capture.sh $out/bin/capture
patchShebangs $out/bin/capture
wrapProgram $out/bin/capture \
--prefix PATH : '${stdenv.lib.makeBinPath [ slop ffmpeg ]}'
'';
meta = with stdenv.lib; {
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
};
}