96600d5770
This commit adds the third party libraries needed by the default Pharo environment to the LD_LIBRARY_PATH, by using makeWrapper.
16 lines
346 B
Nix
16 lines
346 B
Nix
{ 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; };
|
|
}
|
|
|
|
|