nixpkgs/pkgs/applications/graphics/qview/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
715 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, qmake
, qtbase
, qtimageformats
, qtsvg
}:
2020-02-24 21:11:41 +00:00
mkDerivation rec {
2019-05-28 21:12:38 +01:00
pname = "qview";
2020-11-09 23:37:09 +00:00
version = "4.0";
2020-02-24 21:11:41 +00:00
src = fetchFromGitHub {
owner = "jurplel";
repo = "qView";
2019-05-28 21:12:38 +01:00
rev = version;
2020-11-09 23:37:09 +00:00
sha256 = "15n9cq7w3ckinnx38hvncxrbkv4qm4k51sal41q4y0pkvhmafhnr";
};
2020-02-24 21:11:41 +00:00
nativeBuildInputs = [ qmake ];
2020-02-24 21:11:41 +00:00
buildInputs = [
qtbase
qtimageformats
qtsvg
2020-02-24 21:11:41 +00:00
];
patchPhase = ''
sed "s|/usr/|$out/|g" -i qView.pro
'';
2020-02-24 21:11:41 +00:00
meta = with lib; {
description = "Practical and minimal image viewer";
2019-05-28 21:12:38 +01:00
homepage = "https://interversehq.com/qview/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ acowley ];
platforms = platforms.all;
};
}