···66# light] for each ./<version>.nix.
7788rec {
99- xen_4_10-vanilla = callPackage ./4.10.nix {
1010- meta = {
1111- description = "vanilla";
1212- longDescription = ''
1313- Vanilla version of Xen. Uses forks of Qemu and Seabios bundled
1414- with Xen. This gives vanilla experince, but wastes space and
1515- build time: typical NixOS setup that runs lots of VMs will
1616- build three different versions of Qemu when using this (two
1717- forks and upstream).
1818- '';
1919- };
2020- };
2121-2222- xen_4_10-slim = xen_4_10-vanilla.override {
2323- withInternalQemu = false;
2424- withInternalTraditionalQemu = true;
2525- withInternalSeabios = false;
2626- withSeabios = true;
2727-2828- meta = {
2929- description = "slim";
3030- longDescription = ''
3131- Slimmed-down version of Xen that reuses nixpkgs packages as
3232- much as possible. Different parts may get out of sync, but
3333- this builds faster and uses less space than vanilla. Use with
3434- `qemu_xen` from nixpkgs.
3535- '';
3636- };
3737- };
3838-3939- xen_4_10-light = xen_4_10-vanilla.override {
4040- withInternalQemu = false;
4141- withInternalTraditionalQemu = false;
4242- withInternalSeabios = false;
4343- withSeabios = true;
4444-4545- meta = {
4646- description = "light";
4747- longDescription = ''
4848- Slimmed-down version of Xen without `qemu-traditional` (you
4949- don't need it if you don't know what it is). Use with
5050- `qemu_xen-light` from nixpkgs.
5151- '';
5252- };
5353- };
5454-559 xen_4_15-vanilla = callPackage ./4.15.nix {
5610 meta = {
5711 description = "vanilla";
···9852 };
9953 };
10054101101- xen-vanilla = xen_4_10-vanilla;
102102- xen-slim = xen_4_10-slim;
103103- xen-light = xen_4_10-light;
5555+ xen-vanilla = xen_4_15-vanilla;
5656+ xen-slim = xen_4_15-slim;
5757+ xen-light = xen_4_15-light;
10458}