45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv, lib, fetchsvn, linux
|
|
, scripts ? fetchsvn {
|
|
url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/";
|
|
rev = "18239";
|
|
sha256 = "1nzxkc53jmsyaxnl5q9hmgrfd3c8sn2y0pcv7ng042bnvr8hhh82";
|
|
}
|
|
, ...
|
|
}:
|
|
|
|
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";
|
|
isLibre = true;
|
|
|
|
src = stdenv.mkDerivation {
|
|
name = "${linux.name}-libre-src";
|
|
src = linux.src;
|
|
buildPhase = ''
|
|
# --force flag to skip empty files after deblobbing
|
|
${scripts}/${majorMinor}/deblob-${majorMinor} --force \
|
|
${major} ${minor} ${patch}
|
|
'';
|
|
checkPhase = ''
|
|
${scripts}/deblob-check
|
|
'';
|
|
installPhase = ''
|
|
cp -r . "$out"
|
|
'';
|
|
};
|
|
|
|
extraMeta.broken = true;
|
|
|
|
passthru.updateScript = ./update-libre.sh;
|
|
|
|
maintainers = [ lib.maintainers.qyliss ];
|
|
};
|
|
}
|