summary refs log tree commit diff
path: root/pkgs/development/pharo/vm/default.nix
blob: e6269503a4c4f2fcd6f2300e35bacf3920ed0595 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, callPackage, callPackage_i686, makeWrapper, ...} @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; };
}