summary refs log tree commit diff
path: root/pkgs/applications/graphics/qview/default.nix
blob: 8df6ce4f80baf7b642e11dffeb93adbeca555047 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchFromGitHub, qmake}:
stdenv.mkDerivation rec {
  pname = "qview";
  version = "3.0";
  src = fetchFromGitHub {
    owner = "jurplel";
    repo = "qView";
    rev = version;
    sha256 = "15a91bs3wcqhgf76wzigbn10hayg628j84pq4j2vaxar94ak0vk7";
  };
  nativeBuildInputs = [ qmake ];
  patchPhase = ''
    sed "s|/usr/|$out/|g" -i qView.pro
  '';
  meta = with stdenv.lib; {
    description = "Practical and minimal image viewer";
    homepage = "https://interversehq.com/qview/";
    license = licenses.gpl3;
    maintainers = with maintainers; [ acowley ];
    platforms = platforms.all;
  };
}