nixpkgs/pkgs/tools/X11/ffcast/default.nix
Benno Fünfstück a8458bb506 ffcast: remove unnecessary DESTDIR=$out
This avoids files being installed to $out/nix/store
2017-03-03 12:58:43 +01:00

31 lines
735 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, perl, libX11 }:
stdenv.mkDerivation rec {
name = "ffcast-${version}";
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;
};
}