diff --git a/pkgs/tools/graphics/pngloss/default.nix b/pkgs/tools/graphics/pngloss/default.nix new file mode 100644 index 000000000000..eafd77054e40 --- /dev/null +++ b/pkgs/tools/graphics/pngloss/default.nix @@ -0,0 +1,35 @@ +{ lib, stdenv, fetchFromGitHub, pkg-config, libpng, zlib }: + +stdenv.mkDerivation rec { + pname = "pngloss"; + version = "unstable-2020-11-25"; + + src = fetchFromGitHub { + owner = "foobaz"; + repo = pname; + rev = "559f09437e1c797a1eaf08dfdcddd9b082f0e09c"; + sha256 = "sha256-dqrrzbLu4znyWOlTDIf56O3efxszetiP+CdFiy2PBd4="; + }; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ + libpng + zlib + ]; + + installPhase = '' + runHook preInstall + + install -D ./src/pngloss $out/bin/pngloss + + runHook postInstall + ''; + + meta = with lib; { + description = "Lossy compression of PNG images"; + homepage = "https://github.com/foobaz/pngloss"; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ _2gn ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8ed604e43d89..4ecebe7f5717 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9370,6 +9370,8 @@ with pkgs; p0f = callPackage ../tools/security/p0f { }; + pngloss = callPackage ../tools/graphics/pngloss { }; + pngout = callPackage ../tools/graphics/pngout { }; patch = gnupatch;