2023-03-24 00:07:29 +00:00
|
|
|
{ callPackage
|
|
|
|
, lib
|
2021-10-01 09:20:50 +00:00
|
|
|
, stdenv
|
2023-03-24 00:07:29 +00:00
|
|
|
, stdenvNoCC
|
2021-10-01 09:20:50 +00:00
|
|
|
, fetchFromGitHub
|
2021-10-04 12:37:57 +00:00
|
|
|
, genBytecode ? false
|
2021-10-01 09:20:50 +00:00
|
|
|
, bqn-path ? null
|
2021-10-04 12:37:57 +00:00
|
|
|
, mbqn-source ? null
|
2022-12-28 21:21:41 +00:00
|
|
|
, enableReplxx ? false
|
2023-03-24 00:07:29 +00:00
|
|
|
, enableSingeli ? stdenv.hostPlatform.avx2Support
|
2023-01-11 07:51:40 +00:00
|
|
|
# No support for macOS' .dylib on the CBQN side
|
|
|
|
, enableLibcbqn ? stdenv.hostPlatform.isLinux
|
2022-10-21 18:38:19 +00:00
|
|
|
, libffi
|
2022-12-02 08:20:57 +00:00
|
|
|
, pkg-config
|
2021-10-01 09:20:50 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2023-03-24 00:07:29 +00:00
|
|
|
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; };
|
2021-10-01 09:20:50 +00:00
|
|
|
in
|
2021-10-04 12:37:57 +00:00
|
|
|
assert genBytecode -> ((bqn-path != null) && (mbqn-source != null));
|
2021-10-07 14:46:35 +00:00
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-10-04 12:37:57 +00:00
|
|
|
pname = "cbqn" + lib.optionalString (!genBytecode) "-standalone";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "unstable-2023-02-01";
|
2021-10-01 09:20:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dzaima";
|
|
|
|
repo = "CBQN";
|
2023-03-24 00:07:29 +00:00
|
|
|
rev = "05c1270344908e98c9f2d06b3671c3646f8634c3";
|
|
|
|
hash = "sha256-wKeyYWMgTZPr+Ienz3xnsXeD67vwdK4sXbQlW+GpQho=";
|
2021-10-01 09:20:50 +00:00
|
|
|
};
|
|
|
|
|
2022-12-02 08:20:57 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
buildInputs = [
|
|
|
|
libffi
|
|
|
|
];
|
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i '/SHELL =.*/ d' makefile
|
|
|
|
'';
|
|
|
|
|
2021-10-11 16:52:03 +00:00
|
|
|
makeFlags = [
|
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
2022-12-28 21:21:41 +00:00
|
|
|
]
|
|
|
|
++ lib.optional enableReplxx "REPLXX=1";
|
2021-10-07 14:46:35 +00:00
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
buildFlags = [
|
|
|
|
# interpreter binary
|
2023-03-24 00:07:29 +00:00
|
|
|
(lib.flatten (if enableSingeli then ["o3n-singeli" "f='-mavx2'"] else ["o3"]))
|
2023-01-11 07:51:40 +00:00
|
|
|
] ++ lib.optionals enableLibcbqn [
|
|
|
|
# embeddable interpreter as a shared lib
|
|
|
|
"shared-o3"
|
|
|
|
];
|
|
|
|
|
2021-10-11 16:52:03 +00:00
|
|
|
preBuild = ''
|
|
|
|
# Purity: avoids git downloading bytecode files
|
2022-12-02 08:20:57 +00:00
|
|
|
mkdir -p build/bytecodeLocal/gen
|
2021-10-06 13:57:05 +00:00
|
|
|
'' + (if genBytecode then ''
|
2022-12-02 08:20:57 +00:00
|
|
|
${bqn-path} ./build/genRuntime ${mbqn-source} build/bytecodeLocal/
|
2021-10-06 13:57:05 +00:00
|
|
|
'' else ''
|
2023-03-24 00:07:29 +00:00
|
|
|
cp -r ${cbqn-bytecode-submodule}/dev/* build/bytecodeLocal/gen/
|
2022-12-28 21:21:41 +00:00
|
|
|
'')
|
|
|
|
+ lib.optionalString enableReplxx ''
|
2023-03-24 00:07:29 +00:00
|
|
|
cp -r ${replxx-submodule}/dev/* build/replxxLocal/
|
|
|
|
''
|
|
|
|
+ lib.optionalString enableSingeli ''
|
|
|
|
cp -r ${singeli-submodule}/dev/* build/singeliLocal/
|
|
|
|
'';
|
2021-10-01 09:20:50 +00:00
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
2023-02-02 18:25:31 +00:00
|
|
|
] ++ lib.optionals enableLibcbqn [
|
2023-01-11 07:51:40 +00:00
|
|
|
"lib"
|
|
|
|
"dev"
|
|
|
|
];
|
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
installPhase = ''
|
2023-03-24 00:07:29 +00:00
|
|
|
runHook preInstall
|
2021-10-01 09:20:50 +00:00
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
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
|
2023-01-11 07:51:40 +00:00
|
|
|
''
|
|
|
|
+ lib.optionalString enableLibcbqn ''
|
2023-03-24 00:07:29 +00:00
|
|
|
install -Dm644 include/bqnffi.h -t "$dev/include"
|
|
|
|
install -Dm755 libcbqn${stdenv.hostPlatform.extensions.sharedLibrary} -t "$lib/lib"
|
2023-01-11 07:51:40 +00:00
|
|
|
''
|
|
|
|
+ ''
|
2023-03-24 00:07:29 +00:00
|
|
|
runHook postInstall
|
2021-10-01 09:20:50 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/dzaima/CBQN/";
|
|
|
|
description = "BQN implementation in C";
|
|
|
|
license = licenses.gpl3Plus;
|
2022-05-18 14:49:53 +00:00
|
|
|
maintainers = with maintainers; [ AndersonTorres sternenseemann synthetica shnarazk ];
|
2021-10-01 09:20:50 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|
2021-10-04 12:37:57 +00:00
|
|
|
# TODO: test suite
|