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

This commit is contained in:
zendo
2022-04-24 10:26:01 -05:00
committed by GitHub
parent 486e183612
commit 50121730ca
2 changed files with 25 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ lib, stdenv, libpng12, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "pngtools";
version = "unstable-2022-03-14";
src = fetchFromGitHub {
owner = "mikalstill";
repo = "pngtools";
rev = "1ccca3a0f3f6882661bbafbfb62feb774ca195d1";
sha256 = "sha256-W1XofOVTyfA7IbxOnTkWdOOZ00gZ4e0GOYl7nMtLIJk=";
};
buildInputs = [ libpng12 ];
meta = with lib; {
homepage = "https://github.com/mikalstill/pngtools";
description = "PNG manipulation tools";
maintainers = with maintainers; [ zendo ];
license = licenses.gpl2Only;
platforms = platforms.all;
};
}
+2
View File
@@ -9341,6 +9341,8 @@ with pkgs;
libpng = libpng12;
};
pngtools = callPackage ../tools/graphics/pngtools { };
pngpp = callPackage ../development/libraries/png++ { };
pngquant = callPackage ../tools/graphics/pngquant { };