summary refs log tree commit diff
path: root/pkgs/tools/X11/ffcast/default.nix
blob: 1378d5e6b98258cea7d7c869340ed0f327b1c9b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, autoreconfHook, perl, libX11 }:

stdenv.mkDerivation rec {
  pname = "ffcast";
  version = "2.5.0";

  src = fetchFromGitHub {
    owner = "lolilolicon";
    repo = "FFcast";
    rev = version;
    sha256 = "047y32bixhc8ksr98vwpgd0k1xxgsv2vs0n3kc2xdac4krc9454h";
  };

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ perl libX11 ];

  configureFlags = [ "--disable-xrectsel" ];

  postBuild = ''
    make install
  '';

  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;
  };
}