betanin: init at 0.4.0.ffe45c02

This commit is contained in:
2023-09-27 13:58:41 +10:00
parent 6dd12b13cd
commit 8da5c3d901
7 changed files with 10075 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ pkgs
, stdenv
, src
, version
}:
let
nodeComposition = import ./composition.nix {
inherit pkgs;
inherit (stdenv.hostPlatform) system;
};
in
nodeComposition.package.override {
pname = "betanin";
inherit version;
src = "${src}/betanin_client";
postInstall = ''
PRODUCTION=true npm run-script build
'';
}