be356b3d4a
Building a system with boot.kernelPackages = pkgs.linuxPackages-libre failed because the expression is called with extra arguments, See linux-4.14.nix.
39 lines
952 B
Nix
39 lines
952 B
Nix
{ stdenv, lib, fetchsvn, linux
|
|
, scripts ? fetchsvn {
|
|
url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/tags/";
|
|
rev = "r15295";
|
|
sha256 = "03kqbjy7w9zg6ry86h9sxa33z0rblznhba109lwmjwy0wx7yk1cs";
|
|
}
|
|
, ...
|
|
}:
|
|
|
|
let
|
|
majorMinor = lib.versions.majorMinor linux.modDirVersion;
|
|
|
|
major = lib.versions.major linux.modDirVersion;
|
|
minor = lib.versions.minor linux.modDirVersion;
|
|
patch = lib.versions.patch linux.modDirVersion;
|
|
|
|
in linux.override {
|
|
argsOverride = {
|
|
modDirVersion = "${linux.modDirVersion}-gnu";
|
|
|
|
src = stdenv.mkDerivation {
|
|
name = "${linux.name}-libre-src";
|
|
src = linux.src;
|
|
buildPhase = ''
|
|
${scripts}/${majorMinor}-gnu/deblob-${majorMinor} \
|
|
${major} ${minor} ${patch}
|
|
'';
|
|
checkPhase = ''
|
|
${scripts}/deblob-check
|
|
'';
|
|
installPhase = ''
|
|
cp -r . "$out"
|
|
'';
|
|
};
|
|
|
|
maintainers = [ lib.maintainers.qyliss ];
|
|
};
|
|
}
|