pngtools: init at unstable-2022-03-14 (#169875)

authored by zendo and committed by GitHub 50121730 486e1836

+25
+23
pkgs/tools/graphics/pngtools/default.nix
··· 1 + { lib, stdenv, libpng12, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "pngtools"; 5 + version = "unstable-2022-03-14"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "mikalstill"; 9 + repo = "pngtools"; 10 + rev = "1ccca3a0f3f6882661bbafbfb62feb774ca195d1"; 11 + sha256 = "sha256-W1XofOVTyfA7IbxOnTkWdOOZ00gZ4e0GOYl7nMtLIJk="; 12 + }; 13 + 14 + buildInputs = [ libpng12 ]; 15 + 16 + meta = with lib; { 17 + homepage = "https://github.com/mikalstill/pngtools"; 18 + description = "PNG manipulation tools"; 19 + maintainers = with maintainers; [ zendo ]; 20 + license = licenses.gpl2Only; 21 + platforms = platforms.all; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 9341 9341 libpng = libpng12; 9342 9342 }; 9343 9343 9344 + pngtools = callPackage ../tools/graphics/pngtools { }; 9345 + 9344 9346 pngpp = callPackage ../development/libraries/png++ { }; 9345 9347 9346 9348 pngquant = callPackage ../tools/graphics/pngquant { };