mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
33 lines
912 B
Nix
33 lines
912 B
Nix
{ lib, stdenv, fetchurl, xorgproto, libXt, libX11
|
|
, gifview ? false
|
|
, static ? stdenv.hostPlatform.isStatic
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gifsicle";
|
|
version = "1.95";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.lcdf.org/gifsicle/gifsicle-${version}.tar.gz";
|
|
hash = "sha256-snEWRwCf0qExMPO+FgUy7UZTjnYr/A8CDepQYYp9yVA=";
|
|
};
|
|
|
|
buildInputs = lib.optionals gifview [ xorgproto libXt libX11 ];
|
|
|
|
configureFlags = lib.optional (!gifview) "--disable-gifview";
|
|
|
|
LDFLAGS = lib.optionalString static "-static";
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
./src/gifsicle --info logo.gif
|
|
'';
|
|
|
|
meta = {
|
|
description = "Command-line tool for creating, editing, and getting information about GIF images and animations";
|
|
homepage = "https://www.lcdf.org/gifsicle/";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ zimbatm ];
|
|
};
|
|
}
|