forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / pn / pngtools / package.nix
blob563c8af50ae8c34dd321f8b349ac40040bc70138
1 { lib, stdenv, libpng12, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "pngtools";
5   version = "unstable-2022-03-14";
7   src = fetchFromGitHub {
8     owner = "mikalstill";
9     repo = "pngtools";
10     rev = "1ccca3a0f3f6882661bbafbfb62feb774ca195d1";
11     sha256 = "sha256-W1XofOVTyfA7IbxOnTkWdOOZ00gZ4e0GOYl7nMtLIJk=";
12   };
14   buildInputs = [ libpng12 ];
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   };