pqiv: 2.13.2 -> 2.13.3

This commit is contained in:
Bart Brouns
2025-11-14 21:53:16 +01:00
parent 8afca5942f
commit e9abc926b7

View File

@@ -14,13 +14,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "pqiv";
version = "2.13.2";
version = "2.13.3";
src = fetchFromGitHub {
owner = "phillipberndt";
repo = "pqiv";
rev = finalAttrs.version;
hash = "sha256-wpM8eG2/sEfwYLfh6s3AL+z73IzeXxwGm/scWRRKLPo=";
tag = finalAttrs.version;
hash = "sha256-A02YB2VJ3gajnUqzkvmGUGQrEU5XIMSnHS1HLmPnN00=";
};
nativeBuildInputs = [ pkg-config ];
@@ -37,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: {
prePatch = "patchShebangs .";
meta = with lib; {
meta = {
description = "Powerful image viewer with minimal UI";
homepage = "https://www.pberndt.com/Programme/Linux/pqiv";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.unix;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ donovanglover ];
platforms = lib.platforms.unix;
mainProgram = "pqiv";
};
})