fdb90f6df7
Create a new set of VM packages to keep up with changes in the upstream Pharo project.
15 lines
333 B
Nix
15 lines
333 B
Nix
{ stdenv, callPackage, callPackage_i686, ...} @pkgs:
|
|
|
|
let
|
|
i686 = callPackage_i686 ./vms.nix {};
|
|
native = callPackage ./vms.nix {};
|
|
in
|
|
|
|
rec {
|
|
cog32 = i686.cog;
|
|
spur32 = i686.spur;
|
|
spur64 = if stdenv.is64bit then native.spur else "none";
|
|
multi-vm-wrapper = callPackage ../wrapper { inherit cog32 spur32 spur64; };
|
|
}
|
|
|
|
|