Merge pull request #20486 from pjones/pkg/gromit-mpx
gromit-mpx: init at 1.2
This commit is contained in:
commit
c8eae2597e
37
pkgs/tools/graphics/gromit-mpx/default.nix
Normal file
37
pkgs/tools/graphics/gromit-mpx/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1993,6 +1993,12 @@ in
|
|||||||
netpbm = null;
|
netpbm = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gromit-mpx = callPackage ../tools/graphics/gromit-mpx {
|
||||||
|
gtk = gtk3;
|
||||||
|
libappindicator = libappindicator-gtk3;
|
||||||
|
inherit (xorg) libXdmcp;
|
||||||
|
};
|
||||||
|
|
||||||
groonga = callPackage ../servers/search/groonga { };
|
groonga = callPackage ../servers/search/groonga { };
|
||||||
|
|
||||||
grub = callPackage_i686 ../tools/misc/grub {
|
grub = callPackage_i686 ../tools/misc/grub {
|
||||||
|
Loading…
Reference in New Issue
Block a user