Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Disable system_tarball_pc and fix eval

It refers to a kernel version that no longer exists.

(cherry picked from commit e4b9624ca89617005cb082e2a8301695759e1b19)

+2 -1
+2
nixos/release.nix
··· 176 # boot that system from uboot (like for the sheevaplug). 177 # The pc variant helps preparing the expression for the system tarball 178 # in a machine faster than the sheevpalug 179 system_tarball_pc = forAllSystems (system: makeSystemTarball { 180 module = ./modules/installer/cd-dvd/system-tarball-pc.nix; 181 inherit system; 182 }); 183 184 # Provide container tarball for lxc, libvirt-lxc, docker-lxc, ... 185 containerTarball = forAllSystems (system: makeSystemTarball {
··· 176 # boot that system from uboot (like for the sheevaplug). 177 # The pc variant helps preparing the expression for the system tarball 178 # in a machine faster than the sheevpalug 179 + /* 180 system_tarball_pc = forAllSystems (system: makeSystemTarball { 181 module = ./modules/installer/cd-dvd/system-tarball-pc.nix; 182 inherit system; 183 }); 184 + */ 185 186 # Provide container tarball for lxc, libvirt-lxc, docker-lxc, ... 187 containerTarball = forAllSystems (system: makeSystemTarball {
-1
pkgs/top-level/release-cross.nix
··· 16 #xorgserver.crossDrv = nativePlatforms; 17 }; 18 nixUnstable.crossDrv = nativePlatforms; 19 - linuxPackages_3_4.kernel.crossDrv = linux; 20 }; 21 22 /* Basic list of packages to be natively built,
··· 16 #xorgserver.crossDrv = nativePlatforms; 17 }; 18 nixUnstable.crossDrv = nativePlatforms; 19 }; 20 21 /* Basic list of packages to be natively built,