4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1004 B
Nix
39 lines
1004 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
|
, gtk, glib, pcre, libappindicator, libpthreadstubs, libXdmcp
|
|
, libxkbcommon, epoxy, at-spi2-core, dbus, libdbusmenu
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gromit-mpx";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bk138";
|
|
repo = "gromit-mpx";
|
|
rev = version;
|
|
sha256 = "1xn14r7lhay720y78j1fs4amp5lia39kpq7vzv02x4nnwhgbsd9r";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
|
|
buildInputs = [
|
|
gtk glib pcre libappindicator libpthreadstubs
|
|
libXdmcp libxkbcommon epoxy at-spi2-core
|
|
dbus libdbusmenu
|
|
];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|