lepton: only build on x86_64-linux for now
Darwin and `aarch64-linux` builds currently fail[1][2]. Also cleaned up the `meta` section a bit. [1] https://github.com/NixOS/nixpkgs/pull/56108/checks?check_run_id=66442317 [2] https://github.com/NixOS/nixpkgs/pull/56108#issue-254801596
This commit is contained in:
parent
3fa211dfb8
commit
a55d96bf9e
|
@ -14,11 +14,11 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [ cmake git ];
|
nativeBuildInputs = [ cmake git ];
|
||||||
buildInputs = [ glibc.static ];
|
buildInputs = [ glibc.static ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/dropbox/lepton;
|
homepage = https://github.com/dropbox/lepton;
|
||||||
description = "A tool to losslessly compress JPEGs";
|
description = "A tool to losslessly compress JPEGs";
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers = with stdenv.lib.maintainers; [ artemist ];
|
maintainers = with maintainers; [ artemist ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue