ffcast: init at 2.5.0 (#21141)
This commit is contained in:
parent
88f53c989e
commit
4d2406c7d5
@ -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>";
|
||||
|
32
pkgs/tools/X11/ffcast/default.nix
Normal file
32
pkgs/tools/X11/ffcast/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user