a55d96bf9e
Darwin and `aarch64-linux` builds currently fail[1][2]. Also cleaned up the `meta` section a bit. [1] https://github.com/NixOS/nixpkgs/pull/56108/checks?check_run_id=66442317 [2] https://github.com/NixOS/nixpkgs/pull/56108#issue-254801596
25 lines
656 B
Nix
25 lines
656 B
Nix
{ stdenv, fetchFromGitHub, cmake, git, glibc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.1";
|
|
name = "lepton-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "lepton";
|
|
owner = "dropbox";
|
|
rev = "c378cbfa2daaa99e8828be7395013f94cedb1bcc";
|
|
sha256 = "1f2vyp0crj4yw27bs53vykf2fqk4w57gv3lh9dp89dh3y7wwh1ba";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake git ];
|
|
buildInputs = [ glibc.static ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/dropbox/lepton;
|
|
description = "A tool to losslessly compress JPEGs";
|
|
license = licenses.asl20;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ artemist ];
|
|
};
|
|
}
|