Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4ab1c14714fc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c8861f3bee1d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 1, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    Lucus16 Lars Jellema
    Copy the full SHA
    788b13d View commit details
  2. Merge pull request #62342 from marsam/update-libimagequant

    libimagequant: 2.12.2 -> 2.12.3
    marsam authored Jun 1, 2019
    Copy the full SHA
    c8861f3 View commit details
Showing with 22 additions and 25 deletions.
  1. +22 −25 pkgs/development/libraries/libimagequant/default.nix
47 changes: 22 additions & 25 deletions pkgs/development/libraries/libimagequant/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
{ stdenv, fetchFromGitHub, unzip }:
{ stdenv, fetchFromGitHub }:

with stdenv;
stdenv.mkDerivation rec {
pname = "libimagequant";
version = "2.12.3";

let
version = "2.12.2";
in
mkDerivation {
name = "libimagequant-${version}";
src = fetchFromGitHub {
owner = "ImageOptim";
repo = "libimagequant";
rev = "${version}";
sha256 = "1k61ifcjbp2lcrwqidflj99inkyhpbrw0hl1nzq1rjp5dnw2y5lw";
};
src = fetchFromGitHub {
owner = "ImageOptim";
repo = pname;
rev = version;
sha256 = "0qsfq1kv1m5jzn9v9iz0bac66k4clcis1c9877qabnwzwmwma5v0";
};

preConfigure = ''
patchShebangs ./configure
'';
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;
maintainers = with lib.maintainers; [ ma9e ];
};
}
meta = with stdenv.lib; {
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 = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ ma9e marsam ];
};
}