2019-02-20 21:09:14 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, git, glibc }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-02-20 21:09:14 +00:00
|
|
|
version = "1.2.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lepton";
|
2019-02-20 21:09:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "lepton";
|
|
|
|
owner = "dropbox";
|
|
|
|
rev = "c378cbfa2daaa99e8828be7395013f94cedb1bcc";
|
|
|
|
sha256 = "1f2vyp0crj4yw27bs53vykf2fqk4w57gv3lh9dp89dh3y7wwh1ba";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake git ];
|
|
|
|
buildInputs = [ glibc.static ];
|
|
|
|
|
2019-02-20 23:59:46 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-02-20 21:09:14 +00:00
|
|
|
homepage = https://github.com/dropbox/lepton;
|
|
|
|
description = "A tool to losslessly compress JPEGs";
|
2019-02-20 23:59:46 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ artemist ];
|
2019-02-20 21:09:14 +00:00
|
|
|
};
|
|
|
|
}
|