1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/tools/X11/ffcast/default.nix
2016-12-14 14:22:00 +00:00

33 lines
787 B
Nix

{ stdenv, fetchgit, autoconf, automake, perl, libX11 }:
stdenv.mkDerivation rec {
name = "ffcast-${version}";
version = "2.5.0";
rev = "7c3bf681e7ca9b242e55dbf0c07856ed994d94e9";
src = fetchgit {
url = https://github.com/lolilolicon/FFcast;
sha256 = "1s1y6rqjq126jvdzc75wz20szisbz8h8fkphlwxcxzl9xll17akj";
};
buildInputs = [ autoconf automake perl libX11 ];
preConfigure = ''
./bootstrap
'';
configureFlags = [ "--enable-xrectsel" ];
postBuild = ''
make DESTDIR="$out" 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;
};
}