i3ipc-glib: init at 0.6.0

IPC library used to interact with the window manager www.i3wm.org
This commit is contained in:
Matthieu Coudron 2018-06-22 16:43:33 +09:00
parent 85b1312b07
commit d395b185d9
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, pkgconfig, xproto, libxcb
, autoreconfHook, json-glib, gtk-doc, which
, gobjectIntrospection
}:
stdenv.mkDerivation rec {
name = "i3ipc-glib-${version}";
version = "0.6.0";
src = fetchFromGitHub {
owner = "acrisci";
repo = "i3ipc-glib";
rev = "v${version}";
sha256 = "1gmk1zjafrn6jh4j7r0wkwrpwvf9drl1lcw8vya23i1f4zbk0wh4";
};
nativeBuildInputs = [ autoreconfHook which pkgconfig ];
buildInputs = [ libxcb json-glib gtk-doc xproto gobjectIntrospection ];
preAutoreconf = ''
gtkdocize
'';
meta = with stdenv.lib; {
description = "A C interface library to i3wm";
homepage = https://github.com/acrisci/i3ipc-glib;
maintainers = with maintainers; [teto];
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View File

@ -16460,6 +16460,8 @@ with pkgs;
i3cat = callPackage ../tools/misc/i3cat { };
i3ipc-glib = callPackage ../applications/window-managers/i3/i3ipc-glib.nix { };
i3lock = callPackage ../applications/window-managers/i3/lock.nix {
cairo = cairo.override { xcbSupport = true; };
};