Files
nixpkgs/pkgs/by-name/bq/bqn/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.3 KiB
Nix

{
lib,
stdenvNoCC,
fetchFromGitHub,
makeWrapper,
nodejs,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "bqn";
version = "0-unstable-2024-05-13";
src = fetchFromGitHub {
owner = "mlochbaum";
repo = "BQN";
rev = "c971a177421d532a13c4b7515535552df19681e1";
hash = "sha256-Fru1IIb4IxBQxrEEBoRYStxBqYJJqd+Q+Hwyk++QA68=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ nodejs ];
patches = [
# Creates a @libbqn@ substitution variable, to be filled in postFixup
./001-libbqn-path.patch
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share/bqn
cp bqn.js $out/share/bqn/bqn.js
cp docs/bqn.js $out/share/bqn/libbqn.js
makeWrapper "${lib.getBin nodejs}/bin/node" "$out/bin/mbqn" \
--add-flags "$out/share/bqn/bqn.js"
ln -s $out/bin/mbqn $out/bin/bqn
runHook postInstall
'';
postFixup = ''
substituteInPlace $out/share/bqn/bqn.js \
--subst-var-by "libbqn" "$out/share/bqn/libbqn.js"
'';
dontConfigure = true;
dontBuild = true;
strictDeps = true;
meta = {
homepage = "https://github.com/mlochbaum/BQN/";
description = "Original BQN implementation in Javascript";
license = lib.licenses.isc;
maintainers = [ ];
inherit (nodejs.meta) platforms;
};
})
# TODO: install docs and other stuff