summary refs log blame commit diff
path: root/pkgs/tools/X11/ffcast/default.nix
blob: 3f6122e4093d7adbed982fd8a3b92b31fc20d99d (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                               

                         
                   
                    
 


                          
                  
                                                                    

    

                                         
 
                                            

                
                

     
                    
                                                               
                                                       




                                             
{ lib, 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 lib; {
    description = "Run commands on rectangular screen regions";
    homepage = "https://github.com/lolilolicon/FFcast";
    license = licenses.gpl3;
    maintainers = [ maintainers.guyonvarch ];
    platforms = platforms.linux;
  };
}