Fixed linux package so it actually works as part of nixpkgs
This commit is contained in:
@@ -3,6 +3,8 @@ self: super: {
|
|||||||
# vim: set et,sw=4
|
# vim: set et,sw=4
|
||||||
performous-composer = self.libsForQt5.callPackage ./performous-composer.nix {};
|
performous-composer = self.libsForQt5.callPackage ./performous-composer.nix {};
|
||||||
open-simh = self.callPackage ./open-simh.nix {};
|
open-simh = self.callPackage ./open-simh.nix {};
|
||||||
linux_6_5_3 = self.callPackage ./linux_653.nix {};
|
linux_6_5_3 = self.callPackage ./linux_653.nix {
|
||||||
linuxPackages_6_5_3 = self.linuxPackagesFor linux_6_5_3;
|
kernelPatches = [ self.kernelPatches.bridge_stp_helper self.kernelPatches.request_key_helper ];
|
||||||
|
};
|
||||||
|
linuxPackages_6_5_3 = self.linuxPackagesFor self.linux_6_5_3;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,12 @@
|
|||||||
open-simh = pkgs.callPackage ./open-simh.nix {};
|
open-simh = pkgs.callPackage ./open-simh.nix {};
|
||||||
};
|
};
|
||||||
legacyPackages = rec {
|
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;
|
linuxPackages_6_5_3 = pkgs.linuxPackagesFor linux_6_5_3;
|
||||||
};
|
};
|
||||||
apps = rec {
|
apps = rec {
|
||||||
|
|||||||
@@ -18,8 +18,4 @@ buildLinux (args // rec {
|
|||||||
|
|
||||||
structuredExtraConfig.VIDEO_STK1160_COMMON = lib.mkForce (option no);
|
structuredExtraConfig.VIDEO_STK1160_COMMON = lib.mkForce (option no);
|
||||||
|
|
||||||
kernelPatches = with args.kernelPatches; [
|
|
||||||
bridge_stp_helper
|
|
||||||
request_key_helper
|
|
||||||
];
|
|
||||||
} // (args.argsOverride or { }))
|
} // (args.argsOverride or { }))
|
||||||
|
|||||||
Reference in New Issue
Block a user