2019-02-24 02:56:12 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
2016-11-16 23:32:13 +00:00
|
|
|
, gtk, glib, pcre, libappindicator, libpthreadstubs, libXdmcp
|
2018-07-17 21:11:16 +01:00
|
|
|
, libxkbcommon, epoxy, at-spi2-core, dbus, libdbusmenu
|
2016-11-16 23:32:13 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gromit-mpx";
|
2019-02-24 02:56:12 +00:00
|
|
|
version = "1.3";
|
2016-11-16 23:32:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bk138";
|
|
|
|
repo = "gromit-mpx";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2016-11-16 23:32:13 +00:00
|
|
|
sha256 = "1dkmp5rhzp56sz9cfxill2pkdz2anwb8kkxkypvk2xhqi64cvkrs";
|
|
|
|
};
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-11-16 23:32:13 +00:00
|
|
|
buildInputs = [
|
2019-02-24 02:56:12 +00:00
|
|
|
cmake
|
2016-11-16 23:32:13 +00:00
|
|
|
gtk glib pcre libappindicator libpthreadstubs
|
2018-02-25 02:23:58 +00:00
|
|
|
libXdmcp libxkbcommon epoxy at-spi2-core
|
2018-07-17 21:11:16 +01:00
|
|
|
dbus libdbusmenu
|
2016-11-16 23:32:13 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|