summary refs log tree commit diff
path: root/pkgs/tools/graphics/lepton/default.nix
blob: 5af8ad90f0033b5d370203f5fba584af67ac1435 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}