lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 13 lines 331 B view raw
1{ stdenv, callPackage, pkgsi686Linux, ...}: 2 3let 4 i686 = pkgsi686Linux.callPackage ./vms.nix {}; 5 native = callPackage ./vms.nix {}; 6in 7 8rec { 9 cog32 = i686.cog; 10 spur32 = i686.spur; 11 spur64 = if stdenv.is64bit then native.spur else "none"; 12 multi-vm-wrapper = callPackage ../wrapper { inherit cog32 spur32 spur64; }; 13}