Address comments by @aanderse

This commit is contained in:
Anthony Cowley 2019-05-28 16:12:38 -04:00
parent fbc46ae2ca
commit 6f07f1598f

View File

@ -1,11 +1,11 @@
{stdenv, fetchFromGitHub, qmake}: {stdenv, fetchFromGitHub, qmake}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "qview-${version}"; pname = "qview";
version = "2.0"; version = "2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jurplel"; owner = "jurplel";
repo = "qView"; repo = "qView";
rev = "${version}"; rev = version;
sha256 = "1s29hz44rb5dwzq8d4i4bfg77dr0v3ywpvidpa6xzg7hnnv3mhi5"; sha256 = "1s29hz44rb5dwzq8d4i4bfg77dr0v3ywpvidpa6xzg7hnnv3mhi5";
}; };
nativeBuildInputs = [ qmake ]; nativeBuildInputs = [ qmake ];
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Practical and minimal image viewer"; description = "Practical and minimal image viewer";
homepage = https://interversehq.com/qview/; homepage = "https://interversehq.com/qview/";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ acowley ]; maintainers = with maintainers; [ acowley ];
platforms = platforms.all; platforms = platforms.all;