e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, perl
|
|
, CoreServices
|
|
, ApplicationServices
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "moarvm";
|
|
version = "2024.06";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitHub {
|
|
owner = "moarvm";
|
|
repo = "moarvm";
|
|
rev = version;
|
|
hash = "sha256-y+xtJ4YbzPr1168tu+148Co7Ke/iC68aOQBwTINlp2Y=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace Configure.pl \
|
|
--replace '`/usr/bin/arch`' '"${stdenv.hostPlatform.darwinArch}"' \
|
|
--replace '/usr/bin/arch' "$(type -P true)" \
|
|
--replace '/usr/' '/nope/'
|
|
substituteInPlace 3rdparty/dyncall/configure \
|
|
--replace '`sw_vers -productVersion`' '"11.0"'
|
|
'';
|
|
|
|
buildInputs = [ perl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ApplicationServices ];
|
|
doCheck = false; # MoarVM does not come with its own test suite
|
|
|
|
configureScript = "${perl}/bin/perl ./Configure.pl";
|
|
|
|
meta = with lib; {
|
|
description = "VM with adaptive optimization and JIT compilation, built for Rakudo";
|
|
homepage = "https://moarvm.org";
|
|
license = licenses.artistic2;
|
|
maintainers = with maintainers; [ thoughtpolice sgo ];
|
|
mainProgram = "moar";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|