summary refs log tree commit diff
path: root/pkgs/tools/graphics/lepton/default.nix
blob: 2a4f8a310ada5fbe6b32df4448355dc5c33c212f (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";
  pname = "lepton";

  src = fetchFromGitHub {
    repo = "lepton";
    owner = "dropbox";
    rev = version;
    sha256 = "1f2vyp0crj4yw27bs53vykf2fqk4w57gv3lh9dp89dh3y7wwh1ba";
  };

  nativeBuildInputs = [ cmake git ];
  buildInputs = stdenv.lib.optionals stdenv.isLinux [ 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" "x86_64-darwin" ];
    maintainers = with maintainers; [ artemist ];
  };
}