2022-06-20 14:11:12 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, makeWrapper, perl
|
|
|
|
, ffmpeg, imagemagick, xdpyinfo, xprop, xrectsel, xwininfo
|
|
|
|
}:
|
2016-12-14 14:22:00 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ffcast";
|
2016-12-14 14:22:00 +00:00
|
|
|
version = "2.5.0";
|
|
|
|
|
2017-01-09 05:07:25 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-06-20 14:11:12 +01:00
|
|
|
owner = "ropery";
|
2017-01-09 05:07:25 +00:00
|
|
|
repo = "FFcast";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2017-01-09 05:07:25 +00:00
|
|
|
sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h";
|
2016-12-14 14:22:00 +00:00
|
|
|
};
|
|
|
|
|
2022-06-20 14:11:12 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook makeWrapper perl /*for pod2man*/ ];
|
2016-12-14 14:22:00 +00:00
|
|
|
|
2017-01-09 05:07:25 +00:00
|
|
|
configureFlags = [ "--disable-xrectsel" ];
|
2016-12-14 14:22:00 +00:00
|
|
|
|
2022-06-20 14:11:12 +01:00
|
|
|
postInstall = let
|
|
|
|
binPath = lib.makeBinPath [
|
|
|
|
ffmpeg
|
|
|
|
imagemagick
|
|
|
|
xdpyinfo
|
|
|
|
xprop
|
|
|
|
xrectsel
|
|
|
|
xwininfo
|
|
|
|
];
|
|
|
|
in ''
|
|
|
|
wrapProgram $out/bin/ffcast --prefix PATH : ${binPath}
|
2016-12-14 14:22:00 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-12-14 14:22:00 +00:00
|
|
|
description = "Run commands on rectangular screen regions";
|
2022-06-20 14:11:12 +01:00
|
|
|
homepage = "https://github.com/ropery/FFcast";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ sikmir ];
|
2016-12-14 14:22:00 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|