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: cd498f7c802d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 640f023ebb54
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 11, 2019

  1. gifski: init at 0.8.7

    marsam committed Mar 11, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    marsam Mario Rodas
    Copy the full SHA
    1b493e2 View commit details
  2. Merge pull request #57347 from marsam/init-gifski

    gifski: init at 0.8.7
    dywedir authored Mar 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    640f023 View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/tools/graphics/gifski/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/tools/graphics/gifski/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig }:

rustPlatform.buildRustPackage rec {
name = "gifski-${version}";
version = "0.8.7";

src = fetchFromGitHub {
owner = "ImageOptim";
repo = "gifski";
rev = version;
sha256 = "0x41gyc5jk45jlx0hcq80j5gj1f66lcmbclqyx70l43ggslsi26f";
};

cargoSha256 = "0rgcm9kj9wapn8y3ymcm1n713r0a9bvgm339y302f5gy76gbgzrk";

nativeBuildInputs = [ pkgconfig ];

meta = with stdenv.lib; {
description = "GIF encoder based on libimagequant (pngquant)";
homepage = https://gif.ski/;
license = licenses.agpl3;
maintainers = [ maintainers.marsam ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2924,6 +2924,8 @@ in

gifsicle = callPackage ../tools/graphics/gifsicle { };

gifski = callPackage ../tools/graphics/gifski { };

git-big-picture = callPackage ../applications/version-management/git-and-tools/git-big-picture { };

git-crecord = callPackage ../applications/version-management/git-crecord { };