mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
26 lines
764 B
Nix
26 lines
764 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.hostPlatform.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" ];
|
|
};
|
|
}
|