Merge pull request #178351 from sikmir/ffcast
ffcast: fix cross-compilation
This commit is contained in:
@@ -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 {
|
||||
pname = "ffcast";
|
||||
version = "2.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lolilolicon";
|
||||
owner = "ropery";
|
||||
repo = "FFcast";
|
||||
rev = version;
|
||||
sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ perl libX11 ];
|
||||
nativeBuildInputs = [ autoreconfHook makeWrapper perl /*for pod2man*/ ];
|
||||
|
||||
configureFlags = [ "--disable-xrectsel" ];
|
||||
|
||||
postBuild = ''
|
||||
make install
|
||||
postInstall = let
|
||||
binPath = lib.makeBinPath [
|
||||
ffmpeg
|
||||
imagemagick
|
||||
xdpyinfo
|
||||
xprop
|
||||
xrectsel
|
||||
xwininfo
|
||||
];
|
||||
in ''
|
||||
wrapProgram $out/bin/ffcast --prefix PATH : ${binPath}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Run commands on rectangular screen regions";
|
||||
homepage = "https://github.com/lolilolicon/FFcast";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.guyonvarch ];
|
||||
homepage = "https://github.com/ropery/FFcast";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lolilolicon";
|
||||
owner = "ropery";
|
||||
repo = "xrectsel";
|
||||
rev = version;
|
||||
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
|
||||
@@ -14,15 +14,11 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ libX11 ];
|
||||
|
||||
postBuild = ''
|
||||
make install
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Print the geometry of a rectangular screen region";
|
||||
homepage = "https://github.com/lolilolicon/xrectsel";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.guyonvarch ];
|
||||
homepage = "https://github.com/ropery/xrectsel";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user