Merge pull request #294222 from donovanglover/pqiv/maintainer

pqiv: add myself as maintainer

authored by

a-n-n-a-l-e-e and committed by
GitHub
89d56ddd 6a9c892a

+48 -31
-29
pkgs/applications/graphics/pqiv/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config 2 - , ffmpeg, gtk3, imagemagick, libarchive, libspectre, libwebp, poppler 3 - }: 4 - 5 - stdenv.mkDerivation (rec { 6 - pname = "pqiv"; 7 - version = "2.13"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "phillipberndt"; 11 - repo = "pqiv"; 12 - rev = version; 13 - sha256 = "sha256-Jlc6sd9lRWUC1/2GZnJ0EmVRHxCXP8dTZNZEhJBS7oQ="; 14 - }; 15 - 16 - nativeBuildInputs = [ pkg-config ]; 17 - buildInputs = [ ffmpeg gtk3 imagemagick libarchive libspectre libwebp poppler ]; 18 - 19 - prePatch = "patchShebangs ."; 20 - 21 - meta = with lib; { 22 - description = "Powerful image viewer with minimal UI"; 23 - homepage = "https://www.pberndt.com/Programme/Linux/pqiv"; 24 - license = licenses.gpl3Plus; 25 - maintainers = []; 26 - platforms = platforms.linux; 27 - mainProgram = "pqiv"; 28 - }; 29 - })
+48
pkgs/by-name/pq/pqiv/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + pkg-config, 6 + ffmpeg, 7 + gtk3, 8 + imagemagick, 9 + libarchive, 10 + libspectre, 11 + libwebp, 12 + poppler, 13 + }: 14 + 15 + stdenv.mkDerivation (finalAttrs: { 16 + pname = "pqiv"; 17 + version = "2.13"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "phillipberndt"; 21 + repo = "pqiv"; 22 + rev = finalAttrs.version; 23 + hash = "sha256-Jlc6sd9lRWUC1/2GZnJ0EmVRHxCXP8dTZNZEhJBS7oQ="; 24 + }; 25 + 26 + nativeBuildInputs = [ pkg-config ]; 27 + 28 + buildInputs = [ 29 + ffmpeg 30 + gtk3 31 + imagemagick 32 + libarchive 33 + libspectre 34 + libwebp 35 + poppler 36 + ]; 37 + 38 + prePatch = "patchShebangs ."; 39 + 40 + meta = with lib; { 41 + description = "Powerful image viewer with minimal UI"; 42 + homepage = "https://www.pberndt.com/Programme/Linux/pqiv"; 43 + license = licenses.gpl3Plus; 44 + maintainers = with maintainers; [ donovanglover ]; 45 + platforms = platforms.linux; 46 + mainProgram = "pqiv"; 47 + }; 48 + })
-2
pkgs/top-level/all-packages.nix
··· 34398 34398 34399 34399 potrace = callPackage ../applications/graphics/potrace { }; 34400 34400 34401 - pqiv = callPackage ../applications/graphics/pqiv { }; 34402 - 34403 34401 qiv = callPackage ../applications/graphics/qiv { 34404 34402 imlib2 = imlib2Full; 34405 34403 };