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

31 lines
720 B
Nix
Raw Normal View History

2017-01-09 05:07:25 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, perl, libX11 }:
2016-12-14 14:22:00 +00:00
stdenv.mkDerivation rec {
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-08 23:38:31 +00: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 = ''
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;
};
}