lepton: init at 1.2.1

This commit is contained in:
Artemis Tosini 2019-02-20 21:09:14 +00:00
parent 2a81eceeba
commit 3fa211dfb8
No known key found for this signature in database
GPG key ID: EE5227935FE3FF18
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ 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 = {
homepage = https://github.com/dropbox/lepton;
description = "A tool to losslessly compress JPEGs";
license = stdenv.lib.licenses.asl20;
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [ artemist ];
};
}

View file

@ -1487,6 +1487,8 @@ in
languagetool = callPackage ../tools/text/languagetool { };
lepton = callPackage ../tools/graphics/lepton { };
lief = callPackage ../development/libraries/lief {};
libndtypes = callPackage ../development/libraries/libndtypes { };