mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
libimagequant: init at 2.12.1
This commit is contained in:
parent
bc0d87a4f1
commit
276d3d8538
28
pkgs/development/libraries/libimagequant/default.nix
Normal file
28
pkgs/development/libraries/libimagequant/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, unzip }:
|
||||
|
||||
with stdenv;
|
||||
|
||||
let
|
||||
version = "2.12.1";
|
||||
in
|
||||
mkDerivation {
|
||||
name = "libimagequant-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ImageOptim";
|
||||
repo = "libimagequant";
|
||||
rev = "${version}";
|
||||
sha256 = "0r7zgsnhqci2rjilh9bzw43miwp669k6b7q16hdjzrq4nr0xpvbl";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs ./configure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://pngquant.org/lib/;
|
||||
description = "Image quantization library";
|
||||
longDescription = "Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
@ -10735,6 +10735,8 @@ with pkgs;
|
||||
|
||||
libiec61883 = callPackage ../development/libraries/libiec61883 { };
|
||||
|
||||
libimagequant = callPackage ../development/libraries/libimagequant {};
|
||||
|
||||
libinfinity = callPackage ../development/libraries/libinfinity { };
|
||||
|
||||
libinput = callPackage ../development/libraries/libinput {
|
||||
|
Loading…
Reference in New Issue
Block a user