jp2a: 1.2.0 -> 1.3.2

Diff: https://github.com/Talinx/jp2a/compare/v1.2.0...v1.3.2

emaryn 29b4b796 70646658

+14 -9
+14 -9
pkgs/by-name/jp/jp2a/package.nix
··· 9 autoconf-archive, 10 pkg-config, 11 bash-completion, 12 }: 13 14 - stdenv.mkDerivation rec { 15 - version = "1.2.0"; 16 pname = "jp2a"; 17 18 src = fetchFromGitHub { 19 owner = "Talinx"; 20 repo = "jp2a"; 21 - rev = "v${version}"; 22 - sha256 = "sha256-TyXEaHemKfCMyGwK6P2vVL9gPWRLbkaNP0g+/UYGSVc="; 23 }; 24 25 makeFlags = [ "PREFIX=$(out)" ]; ··· 30 pkg-config 31 bash-completion 32 ]; 33 buildInputs = [ 34 libjpeg 35 libpng 36 ncurses 37 ]; 38 39 installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ]; 40 41 - meta = with lib; { 42 broken = stdenv.hostPlatform.isDarwin; 43 homepage = "https://csl.name/jp2a/"; 44 description = "Small utility that converts JPG images to ASCII"; 45 - license = licenses.gpl2Only; 46 - maintainers = [ maintainers.FlorianFranzen ]; 47 - platforms = platforms.unix; 48 mainProgram = "jp2a"; 49 }; 50 - }
··· 9 autoconf-archive, 10 pkg-config, 11 bash-completion, 12 + libwebp, 13 + libexif, 14 }: 15 16 + stdenv.mkDerivation (finalAttrs: { 17 + version = "1.3.2"; 18 pname = "jp2a"; 19 20 src = fetchFromGitHub { 21 owner = "Talinx"; 22 repo = "jp2a"; 23 + tag = "v${finalAttrs.version}"; 24 + hash = "sha256-GcwwzVgF7BK2N8TL8z/7R7Ry1e9pmGiXUrOAQQmPIBo="; 25 }; 26 27 makeFlags = [ "PREFIX=$(out)" ]; ··· 32 pkg-config 33 bash-completion 34 ]; 35 + 36 buildInputs = [ 37 libjpeg 38 libpng 39 ncurses 40 + libwebp 41 + libexif 42 ]; 43 44 installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ]; 45 46 + meta = { 47 broken = stdenv.hostPlatform.isDarwin; 48 homepage = "https://csl.name/jp2a/"; 49 description = "Small utility that converts JPG images to ASCII"; 50 + license = lib.licenses.gpl2Only; 51 + maintainers = [ lib.maintainers.FlorianFranzen ]; 52 + platforms = lib.platforms.unix; 53 mainProgram = "jp2a"; 54 }; 55 + })