mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
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 ];
|
||||
buildInputs = [ glibc.static ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
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 ];
|
||||
license = licenses.asl20;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ artemist ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user