2017-01-09 05:07:25 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, perl, libX11 }:
|
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 {
|
|
|
|
owner = "lolilolicon";
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2017-01-09 05:07:25 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ perl libX11 ];
|
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
|
|
|
|
|
|
|
postBuild = ''
|
2017-03-03 11:57:24 +00:00
|
|
|
make install
|
2016-12-14 14:22:00 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Run commands on rectangular screen regions";
|
|
|
|
homepage = https://github.com/lolilolicon/FFcast;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.guyonvarch ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|