ffcast: fix cross-compilation

This commit is contained in:
Nikolay Korotkiy 2022-06-20 16:11:12 +03:00
parent 164780329f
commit 70f25ecbcb
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -1,30 +1,40 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, perl, libX11 }: { lib, stdenv, fetchFromGitHub, autoreconfHook, makeWrapper, perl
, ffmpeg, imagemagick, xdpyinfo, xprop, xrectsel, xwininfo
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ffcast"; pname = "ffcast";
version = "2.5.0"; version = "2.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lolilolicon"; owner = "ropery";
repo = "FFcast"; repo = "FFcast";
rev = version; rev = version;
sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h"; sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook makeWrapper perl /*for pod2man*/ ];
buildInputs = [ perl libX11 ];
configureFlags = [ "--disable-xrectsel" ]; configureFlags = [ "--disable-xrectsel" ];
postBuild = '' postInstall = let
make install binPath = lib.makeBinPath [
ffmpeg
imagemagick
xdpyinfo
xprop
xrectsel
xwininfo
];
in ''
wrapProgram $out/bin/ffcast --prefix PATH : ${binPath}
''; '';
meta = with lib; { meta = with lib; {
description = "Run commands on rectangular screen regions"; description = "Run commands on rectangular screen regions";
homepage = "https://github.com/lolilolicon/FFcast"; homepage = "https://github.com/ropery/FFcast";
license = licenses.gpl3; license = licenses.gpl3Plus;
maintainers = [ maintainers.guyonvarch ]; maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }