summary refs log tree commit diff
path: root/pkgs/applications/graphics/qimgv/default.nix
blob: 6402868b9221e7fe275263f54ac465ae7d8f2ffe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ mkDerivation, fetchFromGitHub, lib
, pkgconfig, cmake
, exiv2, qtbase, qtimageformats, qtsvg
}:

mkDerivation rec {
  pname = "qimgv";
  version = "0.8.9";

  src = fetchFromGitHub {
    owner = "easymodo";
    repo = pname;
    rev = "v${version}";
    sha256 = "0cmya06j466v0pirhxbzbj1vbz0346y7rbc1gbv4n9xcp6c6bln6";
  };

  cmakeFlags = [
    # Video support appears to be broken; the following gets printed upon
    # attempting to view an mp4, webm, or mkv (and probably all video formats):
    #
    #   [VideoPlayerInitProxy] Error - could not load player library
    #   "qimgv_player_mpv"
    #
    # GIFs are unaffected. If this ever gets addressed, all that is necessary is
    # to add `mpv` to the arguments list and to `buildInputs`, and to remove
    # `cmakeFlags`.
    "-DVIDEO_SUPPORT=OFF"
  ];

  nativeBuildInputs = [
    pkgconfig
    cmake
  ];

  buildInputs = [
    exiv2
    qtbase
    qtimageformats
    qtsvg
  ];

  meta = with lib; {
    description = "Qt5 image viewer with optional video support";
    homepage = "https://github.com/easymodo/qimgv";
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ cole-h ];
  };
}