linuxPackages.anbox: 2019-11-15 -> 2020-06-14, mark broken for kernels

not supported

authored by moni.tngl.sh and committed by Jonathan Ringer ce931507 460d4a40

+5 -6
+5 -6
pkgs/os-specific/linux/anbox/kmod.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "anbox-modules"; 5 - version = "2019-11-15-" + kernel.version; 5 + version = "2020-06-14-${kernel.version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anbox"; 9 9 repo = "anbox-modules"; 10 - rev = "e0a237e571989987806b32881044c539db25e3e1"; 11 - sha256 = "1km1nslp4f5znwskh4bb1b61r1inw1dlbwiyyq3rrh0f0agf8d0v"; 10 + rev = "98f0f3b3b1eeb5a6954ca15ec43e150b76369086"; 11 + sha256 = "sha256-6xDJQ4YItdbYqle/9VNfOc7D80yFGd9cFyF+CuABaF0="; 12 12 }; 13 13 14 14 nativeBuildInputs = kernel.moduleBuildDependencies; ··· 34 34 meta = with lib; { 35 35 description = "Anbox ashmem and binder drivers."; 36 36 homepage = "https://github.com/anbox/anbox-modules"; 37 - license = licenses.gpl2; 37 + license = licenses.gpl2Only; 38 38 platforms = platforms.linux; 39 - broken = (versionOlder kernel.version "4.4"); 39 + broken = kernel.kernelOlder "4.4" || kernel.kernelAtLeast "5.5"; 40 40 maintainers = with maintainers; [ edwtjo ]; 41 41 }; 42 - 43 42 }