tev: 1.13 -> 1.14

This commit is contained in:
Michael Weiss 2020-02-06 22:44:50 +01:00
parent a03b2b331e
commit 4ffe245420
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83
1 changed files with 4 additions and 4 deletions

View File

@ -1,22 +1,22 @@
{ stdenv, fetchFromGitHub
, cmake, wrapGAppsHook
, libX11, xorg, libzip, glfw, gnome3
, libX11, libzip, glfw, libpng, xorg, gnome3
}:
stdenv.mkDerivation rec {
pname = "tev";
version = "1.13";
version = "1.14";
src = fetchFromGitHub {
owner = "Tom94";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
sha256 = "0c8md6yv1q449aszs05xfby6a2aiw8pac7x0zs169i5mpqrrbfa9";
sha256 = "1g86wl0sdn0wprfxff2q1yc1hiq9fndmzhyvj09cw51lzbab5faw";
};
nativeBuildInputs = [ cmake wrapGAppsHook ];
buildInputs = [ libX11 libzip glfw ]
buildInputs = [ libX11 libzip glfw libpng ]
++ (with xorg; [ libXrandr libXinerama libXcursor libXi libXxf86vm ]);
dontWrapGApps = true; # We also need zenity (see below)