about summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-02-14 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-02-14 04:20:00 -0500
commit310b108efa5f7192bee0571c5641c5d1a46c7523 (patch)
tree98bce9b131c41e544dcb6231b1d93706f88dda9f /pkgs/tools/graphics
parente2b4abe3c8f2e09adfc6a52007841d1b96c89371 (diff)
downloadnixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.tar
nixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.tar.gz
nixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.tar.bz2
nixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.tar.lz
nixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.tar.xz
nixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.tar.zst
nixlib-310b108efa5f7192bee0571c5641c5d1a46c7523.zip
lepton: enable on darwin
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/lepton/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/graphics/lepton/default.nix b/pkgs/tools/graphics/lepton/default.nix
index 0b6c12639423..2a4f8a310ada 100644
--- a/pkgs/tools/graphics/lepton/default.nix
+++ b/pkgs/tools/graphics/lepton/default.nix
@@ -1,24 +1,24 @@
 { stdenv, fetchFromGitHub, cmake, git, glibc }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   version = "1.2.1";
   pname = "lepton";
 
   src = fetchFromGitHub {
     repo = "lepton";
     owner = "dropbox";
-    rev = "c378cbfa2daaa99e8828be7395013f94cedb1bcc";
+    rev = version;
     sha256 = "1f2vyp0crj4yw27bs53vykf2fqk4w57gv3lh9dp89dh3y7wwh1ba";
   };
 
   nativeBuildInputs = [ cmake git ];
-  buildInputs = [ glibc.static ];
+  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" ];
+    platforms = [ "x86_64-linux" "x86_64-darwin" ];
     maintainers = with maintainers; [ artemist ];
   };
 }