Fixed linux package so it actually works as part of nixpkgs

This commit is contained in:
2023-09-14 15:00:40 +02:00
parent da04e2c03e
commit ac216f3451
3 changed files with 10 additions and 7 deletions

View File

@@ -3,6 +3,8 @@ self: super: {
# vim: set et,sw=4
performous-composer = self.libsForQt5.callPackage ./performous-composer.nix {};
open-simh = self.callPackage ./open-simh.nix {};
linux_6_5_3 = self.callPackage ./linux_653.nix {};
linuxPackages_6_5_3 = self.linuxPackagesFor linux_6_5_3;
linux_6_5_3 = self.callPackage ./linux_653.nix {
kernelPatches = [ self.kernelPatches.bridge_stp_helper self.kernelPatches.request_key_helper ];
};
linuxPackages_6_5_3 = self.linuxPackagesFor self.linux_6_5_3;
}

View File

@@ -13,7 +13,12 @@
open-simh = pkgs.callPackage ./open-simh.nix {};
};
legacyPackages = rec {
linux_6_5_3 = pkgs.callPackage ./linux_653.nix {};
linux_6_5_3 = pkgs.callPackage ./linux_653.nix {
kernelPatches = with pkgs.kernelPatches; [
bridge_stp_helper
request_key_helper
];
};
linuxPackages_6_5_3 = pkgs.linuxPackagesFor linux_6_5_3;
};
apps = rec {

View File

@@ -18,8 +18,4 @@ buildLinux (args // rec {
structuredExtraConfig.VIDEO_STK1160_COMMON = lib.mkForce (option no);
kernelPatches = with args.kernelPatches; [
bridge_stp_helper
request_key_helper
];
} // (args.argsOverride or { }))