4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib, stdenv, kernel, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "anbox-modules";
|
|
version = "2019-11-15-" + kernel.version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anbox";
|
|
repo = "anbox-modules";
|
|
rev = "e0a237e571989987806b32881044c539db25e3e1";
|
|
sha256 = "1km1nslp4f5znwskh4bb1b61r1inw1dlbwiyyq3rrh0f0agf8d0v";
|
|
};
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
KERNEL_SRC="${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
|
|
|
buildPhase = ''
|
|
for d in ashmem binder;do
|
|
cd $d
|
|
make
|
|
cd -
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
modDir=$out/lib/modules/${kernel.modDirVersion}/kernel/updates/
|
|
mkdir -p $modDir
|
|
for d in ashmem binder;do
|
|
mv $d/$d*.ko $modDir/.
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Anbox ashmem and binder drivers.";
|
|
homepage = "https://github.com/anbox/anbox-modules";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
broken = (versionOlder kernel.version "4.4") || (kernel.features.grsecurity or false);
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
};
|
|
|
|
}
|