Merge pull request #80489 from marsam/enable-lepton-darwin
lepton: enable on darwin
This commit is contained in:
commit
effebb9142
@ -1,24 +1,24 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, git, glibc }:
|
{ stdenv, fetchFromGitHub, cmake, git, glibc }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.2.1";
|
version = "1.2.1";
|
||||||
pname = "lepton";
|
pname = "lepton";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
repo = "lepton";
|
repo = "lepton";
|
||||||
owner = "dropbox";
|
owner = "dropbox";
|
||||||
rev = "c378cbfa2daaa99e8828be7395013f94cedb1bcc";
|
rev = version;
|
||||||
sha256 = "1f2vyp0crj4yw27bs53vykf2fqk4w57gv3lh9dp89dh3y7wwh1ba";
|
sha256 = "1f2vyp0crj4yw27bs53vykf2fqk4w57gv3lh9dp89dh3y7wwh1ba";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake git ];
|
nativeBuildInputs = [ cmake git ];
|
||||||
buildInputs = [ glibc.static ];
|
buildInputs = stdenv.lib.optionals stdenv.isLinux [ glibc.static ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/dropbox/lepton;
|
homepage = https://github.com/dropbox/lepton;
|
||||||
description = "A tool to losslessly compress JPEGs";
|
description = "A tool to losslessly compress JPEGs";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
||||||
maintainers = with maintainers; [ artemist ];
|
maintainers = with maintainers; [ artemist ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user