nixpkgs/pkgs/tools/graphics/gromit-mpx/default.nix
2016-11-16 16:32:13 -07:00

38 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, autoconf, automake, pkgconfig
, gtk, glib, pcre, libappindicator, libpthreadstubs, libXdmcp
, libxkbcommon, epoxy, at_spi2_core, dbus, libdbusmenu-glib
}:
stdenv.mkDerivation rec {
name = "gromit-mpx-${version}";
version = "1.2";
src = fetchFromGitHub {
owner = "bk138";
repo = "gromit-mpx";
rev = "${version}";
sha256 = "1dkmp5rhzp56sz9cfxill2pkdz2anwb8kkxkypvk2xhqi64cvkrs";
};
buildInputs = [
autoconf automake autoreconfHook pkgconfig
gtk glib pcre libappindicator libpthreadstubs
libXdmcp libxkbcommon epoxy at_spi2_core
dbus libdbusmenu-glib
];
meta = with stdenv.lib; {
description = "Desktop annotation tool";
longDescription = ''
Gromit-MPX (GRaphics Over MIscellaneous Things) is a small tool
to make annotations on the screen.
'';
homepage = https://github.com/bk138/gromit-mpx;
maintainers = with maintainers; [ pjones ];
platforms = platforms.linux;
license = licenses.gpl2;
};
}