Add initial code to be used when working with `nix` and `NixOS`. * a Nix flake * building a package * a NixOS module
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{
|
|
git,
|
|
lib,
|
|
makeWrapper,
|
|
nodejs_22,
|
|
pnpm_10,
|
|
stdenv,
|
|
...
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "headplane";
|
|
|
|
# TODO: take the latest `git tag`, if commits do not match, append `-SNAPSHOT`.
|
|
version = "0.5.3";
|
|
|
|
# TODO: requires `.git` directory.
|
|
src = ../.;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
nodejs_22
|
|
pnpm_10.configHook
|
|
git
|
|
];
|
|
|
|
dontCheckForBrokenSymlinks = true;
|
|
|
|
pnpmDeps = pnpm_10.fetchDeps {
|
|
inherit (finalAttrs) pname version src;
|
|
hash = "sha256-j+3fcxukK19fXVIlVe+tXenYf28MylHy+/qHy7FpvL0=";
|
|
};
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
pnpm build
|
|
pnpm prune --prod
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/{bin,share/headplane}
|
|
cp -r {build,node_modules} $out/share/headplane/
|
|
sed -i 's;/build/source/node_modules/react-router/dist/development/index.mjs;react-router;' $out/share/headplane/build/headplane/server.js
|
|
sed -i 's;define_process_env_default.PORT;process.env.PORT;' $out/share/headplane/build/headplane/server.js
|
|
makeWrapper ${lib.getExe nodejs_22} $out/bin/headplane \
|
|
--chdir $out/share/headplane \
|
|
--set BUILD_PATH $out/share/headplane/build \
|
|
--set NODE_ENV production \
|
|
--add-flags $out/share/headplane/build/headplane/server.js
|
|
runHook postInstall
|
|
'';
|
|
})
|