tev: 1.13 -> 1.14
This commit is contained in:
parent
a03b2b331e
commit
4ffe245420
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue