3
0
Fork 0
forked from mirrors/nixpkgs

ffcast: init at 2.5.0 (#21141)

This commit is contained in:
Joris Guyonvarch 2016-12-14 15:22:00 +01:00 committed by zimbatm
parent 88f53c989e
commit 4d2406c7d5
3 changed files with 35 additions and 0 deletions

View file

@ -188,6 +188,7 @@
gridaphobe = "Eric Seidel <eric@seidel.io>";
guibert = "David Guibert <david.guibert@gmail.com>";
guillaumekoenig = "Guillaume Koenig <guillaume.edward.koenig@gmail.com>";
guyonvarch = "Joris Guyonvarch <joris@guyonvarch.me>";
hakuch = "Jesse Haber-Kucharsky <hakuch@gmail.com>";
havvy = "Ryan Scheel <ryan.havvy@gmail.com>";
hbunke = "Hendrik Bunke <bunke.hendrik@gmail.com>";

View file

@ -0,0 +1,32 @@
{ 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;
};
}

View file

@ -6958,6 +6958,8 @@ in
fcgi = callPackage ../development/libraries/fcgi { };
ffcast = callPackage ../tools/X11/ffcast { };
fflas-ffpack = callPackage ../development/libraries/fflas-ffpack {};
fflas-ffpack_1 = callPackage ../development/libraries/fflas-ffpack/1.nix {};