Merge pull request #62161 from acowley/qview2

qView: init at 2.0
This commit is contained in:
Aaron Andersen 2019-05-28 23:17:37 -04:00 committed by GitHub
commit 8ae3e7379f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{stdenv, fetchFromGitHub, qmake}:
stdenv.mkDerivation rec {
pname = "qview";
version = "2.0";
src = fetchFromGitHub {
owner = "jurplel";
repo = "qView";
rev = version;
sha256 = "1s29hz44rb5dwzq8d4i4bfg77dr0v3ywpvidpa6xzg7hnnv3mhi5";
};
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;
};
}

View file

@ -5472,6 +5472,8 @@ in
quota = if stdenv.isLinux then linuxquota else unixtools.quota;
qview = libsForQt5.callPackage ../applications/graphics/qview {};
wiggle = callPackage ../development/tools/wiggle { };
radamsa = callPackage ../tools/security/radamsa { };