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

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

39 lines
670 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, qmake
, qtbase
2022-11-27 12:37:12 +00:00
, qttools
, qtimageformats
, qtsvg
}:
2020-02-24 21:11:41 +00:00
mkDerivation rec {
2019-05-28 20:12:38 +00:00
pname = "qview";
2022-11-27 12:37:12 +00:00
version = "5.0";
2020-02-24 21:11:41 +00:00
src = fetchFromGitHub {
owner = "jurplel";
repo = "qView";
2019-05-28 20:12:38 +00:00
rev = version;
2022-11-27 12:37:12 +00:00
hash = "sha256-VQ0H9iPrrxO9e/kMo7yZ/zN5I2qDWBCAFacS9uGuZLI=";
};
2020-02-24 21:11:41 +00:00
nativeBuildInputs = [ qmake ];
2020-02-24 21:11:41 +00:00
buildInputs = [
qtbase
2022-11-27 12:37:12 +00:00
qttools
qtimageformats
qtsvg
2020-02-24 21:11:41 +00:00
];
meta = with lib; {
description = "Practical and minimal image viewer";
2019-05-28 20:12:38 +00:00
homepage = "https://interversehq.com/qview/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ acowley ];
platforms = platforms.all;
};
}