nixpkgs/pkgs/os-specific/linux/kernel/linux-libre.nix

41 lines
999 B
Nix
Raw Normal View History

2018-08-20 22:32:29 +00:00
{ stdenv, lib, fetchsvn, linux
, scripts ? fetchsvn {
url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/";
2020-01-13 12:23:03 +00:00
rev = "17192";
2019-12-18 16:24:08 +00:00
sha256 = "0hyd7wp73w4555d42xcvk4x4nxrfckbzah2ckb4d2aqzxab87789";
2018-08-20 22:32:29 +00:00
}
, ...
2018-08-20 22:32:29 +00:00
}:
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";
2018-08-20 22:32:29 +00:00
src = stdenv.mkDerivation {
name = "${linux.name}-libre-src";
src = linux.src;
buildPhase = ''
${scripts}/${majorMinor}/deblob-${majorMinor} \
2018-08-20 22:32:29 +00:00
${major} ${minor} ${patch}
'';
checkPhase = ''
${scripts}/deblob-check
'';
installPhase = ''
cp -r . "$out"
'';
};
passthru.updateScript = ./update-libre.sh;
maintainers = [ lib.maintainers.qyliss ];
2018-08-20 22:32:29 +00:00
};
}