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

32 lines
653 B
Nix
Raw Normal View History

2020-02-24 21:11:41 +00:00
{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase }:
mkDerivation rec {
2019-05-28 21:12:38 +01:00
pname = "qview";
2020-01-22 23:33:25 +00:00
version = "3.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-01-22 23:33:25 +00:00
sha256 = "15a91bs3wcqhgf76wzigbn10hayg628j84pq4j2vaxar94ak0vk7";
};
2020-02-24 21:11:41 +00:00
nativeBuildInputs = [ qmake ];
2020-02-24 21:11:41 +00:00
buildInputs = [
qtbase
];
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.gpl3;
maintainers = with maintainers; [ acowley ];
platforms = platforms.all;
};
}