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

View File

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