mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
133 lines
3.4 KiB
Nix
133 lines
3.4 KiB
Nix
{ callPackage
|
|
, lib
|
|
, stdenv
|
|
, stdenvNoCC
|
|
, fetchFromGitHub
|
|
, fixDarwinDylibNames
|
|
, genBytecode ? false
|
|
, bqn-path ? null
|
|
, mbqn-source
|
|
, enableReplxx ? false
|
|
, enableLibcbqn ? ((stdenv.hostPlatform.isLinux || stdenv.hostPlatform.isDarwin) && !enableReplxx)
|
|
, libffi
|
|
, pkg-config
|
|
}:
|
|
|
|
let
|
|
cbqn-bytecode-submodule =
|
|
callPackage ./cbqn-bytecode.nix { inherit lib fetchFromGitHub stdenvNoCC; };
|
|
replxx-submodule = callPackage ./replxx.nix { inherit lib fetchFromGitHub stdenvNoCC; };
|
|
singeli-submodule = callPackage ./singeli.nix { inherit lib fetchFromGitHub stdenvNoCC; };
|
|
in
|
|
assert genBytecode -> ((bqn-path != null) && (mbqn-source != null));
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cbqn" + lib.optionalString (!genBytecode) "-standalone";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dzaima";
|
|
repo = "CBQN";
|
|
rev = "v${version}";
|
|
hash = "sha256-PCpePevWQ+aPG6Yx3WqBZ4yTeyJsCGkYMSY6kzGDL1U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
buildInputs = [
|
|
libffi
|
|
];
|
|
|
|
dontConfigure = true;
|
|
doInstallCheck = true;
|
|
|
|
postPatch = ''
|
|
sed -i '/SHELL =.*/ d' makefile
|
|
patchShebangs build/build
|
|
'';
|
|
|
|
makeFlags = [
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
];
|
|
|
|
buildFlags = [
|
|
# interpreter binary
|
|
"o3"
|
|
"notui=1" # display build progress in a plain-text format
|
|
"REPLXX=${if enableReplxx then "1" else "0"}"
|
|
] ++ lib.optionals stdenv.hostPlatform.avx2Support [
|
|
"has=avx2"
|
|
] ++ lib.optionals enableLibcbqn [
|
|
# embeddable interpreter as a shared lib
|
|
"shared-o3"
|
|
];
|
|
|
|
preBuild = ''
|
|
# Purity: avoids git downloading bytecode files
|
|
mkdir -p build/bytecodeLocal/gen
|
|
cp -r ${singeli-submodule}/dev/* build/singeliLocal/
|
|
'' + (if genBytecode then ''
|
|
${bqn-path} ./build/genRuntime ${mbqn-source} build/bytecodeLocal/
|
|
'' else ''
|
|
cp -r ${cbqn-bytecode-submodule}/dev/* build/bytecodeLocal/gen/
|
|
'')
|
|
+ lib.optionalString enableReplxx ''
|
|
cp -r ${replxx-submodule}/dev/* build/replxxLocal/
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
] ++ lib.optionals enableLibcbqn [
|
|
"lib"
|
|
"dev"
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin/
|
|
cp BQN -t $out/bin/
|
|
# note guard condition for case-insensitive filesystems
|
|
[ -e $out/bin/bqn ] || ln -s $out/bin/BQN $out/bin/bqn
|
|
[ -e $out/bin/cbqn ] || ln -s $out/bin/BQN $out/bin/cbqn
|
|
''
|
|
+ lib.optionalString enableLibcbqn ''
|
|
install -Dm644 include/bqnffi.h -t "$dev/include"
|
|
install -Dm755 libcbqn${stdenv.hostPlatform.extensions.sharedLibrary} -t "$lib/lib"
|
|
''
|
|
+ ''
|
|
runHook postInstall
|
|
'';
|
|
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
|
|
# main test suite from mlochbaum/BQN
|
|
$out/bin/BQN ${mbqn-source}/test/this.bqn
|
|
|
|
# CBQN tests that do not require compiling with test-only flags
|
|
$out/bin/BQN test/cmp.bqn
|
|
$out/bin/BQN test/equal.bqn
|
|
$out/bin/BQN test/copy.bqn
|
|
$out/bin/BQN test/bit.bqn
|
|
$out/bin/BQN test/hash.bqn
|
|
$out/bin/BQN test/squeezeValid.bqn
|
|
$out/bin/BQN test/squeezeExact.bqn
|
|
$out/bin/BQN test/various.bqn
|
|
$out/bin/BQN test/random.bqn
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dzaima/CBQN/";
|
|
description = "BQN implementation in C";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres sternenseemann synthetica shnarazk detegr ];
|
|
platforms = platforms.all;
|
|
mainProgram = "cbqn";
|
|
};
|
|
}
|