portfolio/flake.nix

61 lines
1.5 KiB
Nix

{
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 = {
lib = pkgs.buildNpmPackage {
pname = "portfolio";
version = "0.1.0";
src = ./.;
npmDepsHash = "sha256-Vx9NOJfk4sF2MMy/x0mJ0SINqWgx5oKmc8XOhi2vu6I";
forceEmptyCache = true;
buildPhase = "bash ${./build.sh}";
# Needed to properly invoke npm run build.
nativeBuildInputs = with pkgs; [
nodePackages.tailwindcss
typescript
];
installPhase = ''
mkdir $out
cp -a dist/* $out
'';
};
default = self.packages.${system}.lib;
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
nodePackages.prettier
nodePackages.typescript-language-server
nodePackages.tailwindcss
nodejs
prefetch-npm-deps
typescript
];
};
});
}