metis/default.nix
2021-11-20 00:11:38 +01:00

10 lines
227 B
Nix

{ pkgs ? import ./nix {} }:
{
production = pkgs.npmlock2nix.build {
src = ./.;
installPhase = "cp -r public/build $out";
buildCommands = [ "npm run build" ];
};
shell = import ./shell.nix { inherit pkgs; };
}