pngtools: init at unstable-2022-03-14 (#169875)
This commit is contained in:
parent
486e183612
commit
50121730ca
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/graphics/pngtools/default.nix
Normal file
23
pkgs/tools/graphics/pngtools/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -9341,6 +9341,8 @@ with pkgs;
|
||||||
libpng = libpng12;
|
libpng = libpng12;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pngtools = callPackage ../tools/graphics/pngtools { };
|
||||||
|
|
||||||
pngpp = callPackage ../development/libraries/png++ { };
|
pngpp = callPackage ../development/libraries/png++ { };
|
||||||
|
|
||||||
pngquant = callPackage ../tools/graphics/pngquant { };
|
pngquant = callPackage ../tools/graphics/pngquant { };
|
||||||
|
|
Loading…
Reference in a new issue