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