nixpkgs/pkgs/tools/graphics/gifski/default.nix

25 lines
618 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config }:
2019-03-03 17:02:27 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "gifski";
2021-01-18 22:16:28 +01:00
version = "1.2.6";
2019-03-03 17:02:27 +01:00
src = fetchFromGitHub {
owner = "ImageOptim";
repo = "gifski";
rev = version;
2021-01-18 22:16:28 +01:00
sha256 = "sha256-pnaNBjMKWfnCHG4MTLS2tJ2lrKxH6tcnvbOFZSDtPJY=";
2019-03-03 17:02:27 +01:00
};
2021-01-18 22:16:28 +01:00
cargoSha256 = "sha256-M5LEoEaWKT6nfQsnuqfyRBtDILewAxzMs7d6DvhkvFg=";
2019-03-03 17:02:27 +01:00
nativeBuildInputs = [ pkg-config ];
2019-03-03 17:02:27 +01:00
meta = with lib; {
2019-03-03 17:02:27 +01:00
description = "GIF encoder based on libimagequant (pngquant)";
2020-02-22 00:59:26 +01:00
homepage = "https://gif.ski/";
2019-03-03 17:02:27 +01:00
license = licenses.agpl3;
maintainers = [ maintainers.marsam ];
};
}