uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
38
pkgs/tools/graphics/gromit-mpx/default.nix
Normal file
38
pkgs/tools/graphics/gromit-mpx/default.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
||||
, gtk, glib, pcre, libappindicator, libpthreadstubs, libXdmcp
|
||||
, libxkbcommon, libepoxy, at-spi2-core, dbus, libdbusmenu
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gromit-mpx";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bk138";
|
||||
repo = "gromit-mpx";
|
||||
rev = version;
|
||||
sha256 = "sha256-2inmcKSdvHs7WaU095liH12Og9ezsNSs2qygltWOclw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
|
||||
buildInputs = [
|
||||
gtk glib pcre libappindicator libpthreadstubs
|
||||
libXdmcp libxkbcommon libepoxy 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.gpl2Plus;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue