biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / graphics / xv / default.nix
blobd3708dd0c4a10b4a6c1317ed36825fc1550e92be
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   xorg,
7   libpng,
8   libwebp,
9   libtiff,
10   jasper,
13 stdenv.mkDerivation rec {
14   pname = "xv";
15   version = "5.0.0";
17   src = fetchFromGitHub {
18     owner = "jasper-software";
19     repo = "xv";
20     rev = "v${version}";
21     sha256 = "sha256-ATV/LxXQNJB6rjBmurx6a1gRPR8zNuILstvEJoQJhUs=";
22   };
24   nativeBuildInputs = [ cmake ];
25   buildInputs = [ xorg.libX11 xorg.libXt libpng libwebp libtiff jasper ];
27   meta = {
28     description = "Classic image viewer and editor for X";
29     homepage = "http://www.trilon.com/xv/";
30     license = {
31       fullName = "XV License";
32       url = "https://github.com/jasper-software/xv/blob/main/src/README";
33       free = false;
34     };
35     maintainers = with lib.maintainers; [ galen ];
36   };