portfolio/flake.nix

61 lines
1.5 KiB
Nix
Raw Normal View History

2023-12-13 22:32:55 +00:00
{
description = ''
An opinionated nodejs flake.
To generate a copy of this template elsewhere, install
[bootstrap](https://github.com/jrpotter/bootstrap) and run:
```bash
$ bootstrap nodejs
```
'';
inputs = {
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages = {
2023-12-14 16:11:07 +00:00
app = pkgs.buildNpmPackage {
2023-12-13 22:32:55 +00:00
pname = "portfolio";
version = "0.1.0";
src = ./.;
2023-12-13 22:43:47 +00:00
npmDepsHash = "sha256-Vx9NOJfk4sF2MMy/x0mJ0SINqWgx5oKmc8XOhi2vu6I";
forceEmptyCache = true;
2023-12-13 22:32:55 +00:00
2023-12-13 23:16:44 +00:00
buildPhase = "bash ${./build.sh}";
2023-12-13 22:32:55 +00:00
# Needed to properly invoke npm run build.
2023-12-13 22:43:47 +00:00
nativeBuildInputs = with pkgs; [
nodePackages.tailwindcss
typescript
];
2023-12-13 22:32:55 +00:00
installPhase = ''
mkdir $out
2023-12-13 22:43:47 +00:00
cp -a dist/* $out
2023-12-13 22:32:55 +00:00
'';
};
2023-12-14 16:11:07 +00:00
default = self.packages.${system}.app;
2023-12-13 22:32:55 +00:00
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
nodePackages.prettier
nodePackages.typescript-language-server
2023-12-13 22:43:47 +00:00
nodePackages.tailwindcss
2023-12-13 22:32:55 +00:00
nodejs
prefetch-npm-deps
typescript
];
};
});
}