nixpkgs/pkgs/tools/X11/ffcast/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
997 B
Nix
Raw Normal View History

2022-06-20 15:11:12 +02:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, makeWrapper, perl
, ffmpeg-full, imagemagick, xdpyinfo, xprop, xrectsel, xwininfo
2022-06-20 15:11:12 +02:00
}:
2016-12-14 15:22:00 +01:00
stdenv.mkDerivation rec {
pname = "ffcast";
2024-01-21 08:24:25 +01:00
version = "2.5.1";
2016-12-14 15:22:00 +01:00
2017-01-09 06:07:25 +01:00
src = fetchFromGitHub {
2022-06-20 15:11:12 +02:00
owner = "ropery";
2017-01-09 06:07:25 +01:00
repo = "FFcast";
2019-09-09 01:38:31 +02:00
rev = version;
2024-01-21 08:24:25 +01:00
sha256 = "sha256-kxqwDGEguFTFHkQzXctXqxslt0+bYnfUdQ8C/8+eTXo=";
2016-12-14 15:22:00 +01:00
};
2022-06-20 15:11:12 +02:00
nativeBuildInputs = [ autoreconfHook makeWrapper perl /*for pod2man*/ ];
2016-12-14 15:22:00 +01:00
2017-01-09 06:07:25 +01:00
configureFlags = [ "--disable-xrectsel" ];
2016-12-14 15:22:00 +01:00
2022-06-20 15:11:12 +02:00
postInstall = let
binPath = lib.makeBinPath [
ffmpeg-full
2022-06-20 15:11:12 +02:00
imagemagick
xdpyinfo
xprop
xrectsel
xwininfo
];
in ''
wrapProgram $out/bin/ffcast --prefix PATH : ${binPath}
2016-12-14 15:22:00 +01:00
'';
meta = with lib; {
2016-12-14 15:22:00 +01:00
description = "Run commands on rectangular screen regions";
2022-06-20 15:11:12 +02:00
homepage = "https://github.com/ropery/FFcast";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sikmir ];
2016-12-14 15:22:00 +01:00
platforms = platforms.linux;
2023-11-23 22:09:35 +01:00
mainProgram = "ffcast";
2016-12-14 15:22:00 +01:00
};
}