Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
libpng,
zlib,
lcms2,
}:
rustPlatform.buildRustPackage rec {
pname = "pngquant";
version = "3.0.3";
outputs = [
"out"
"man"
];
src = fetchFromGitHub {
owner = "kornelski";
repo = "pngquant";
tag = version;
hash = "sha256-u2zEp9Llo+c/+1QGW4V4r40KQn/ATHCTEsrpy7bRf/I=";
fetchSubmodules = true;
};
cargoHash = "sha256-W+/y79KkSVHqBybouUazGVfTQAuelXvn6EXtu+TW7j4=";
cargoPatches = [
# https://github.com/kornelski/pngquant/issues/347
./add-Cargo.lock.patch
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libpng
zlib
lcms2
];
doCheck = false; # Has no Rust-based tests
postInstall = ''
install -Dpm0444 pngquant.1 $man/share/man/man1/pngquant.1
'';
meta = {
homepage = "https://pngquant.org/";
description = "Tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
changelog = "https://github.com/kornelski/pngquant/raw/${version}/CHANGELOG";
platforms = lib.platforms.unix;
license = with lib.licenses; [
gpl3Plus
hpnd
bsd2
];
mainProgram = "pngquant";
maintainers = [ ];
};
}