nixpkgs/pkgs/tools/graphics/lepton/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

25 lines
751 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, git, glibc }:
stdenv.mkDerivation rec {
version = "2019-08-20";
pname = "lepton-unstable";
src = fetchFromGitHub {
repo = "lepton";
owner = "dropbox";
rev = "3d1bc19da9f13a6e817938afd0f61a81110be4da";
sha256 = "0aqs6nvcbq8cbfv8699fa634bsz7csmk0169n069yvv17d1c07fd";
};
nativeBuildInputs = [ cmake git ];
buildInputs = lib.optionals stdenv.isLinux [ glibc.static ];
meta = with lib; {
homepage = "https://github.com/dropbox/lepton";
description = "Tool to losslessly compress JPEGs";
license = licenses.asl20;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
maintainers = with maintainers; [ artemist ];
knownVulnerabilities = [ "CVE-2022-4104" ];
};
}