-
Notifications
You must be signed in to change notification settings - Fork 8
/
flake.nix
41 lines (36 loc) · 1.05 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
description = "Nix flake for Aegis' website";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in rec {
packages = flake-utils.lib.flattenTree {
aegis-website = with pkgs; mkYarnPackage rec {
name = "aegis-website";
src = ./.;
packageJSON = src + "/package.json";
yarnLock = src + "/yarn.lock";
buildPhase = ''
export HOME=$(mktemp -d)
yarn --offline build
'';
installPhase = ''
mkdir -p $out
cp -r node_modules/${name}/dist/client/* $out
'';
doDist = false;
};
};
defaultPackage = packages.aegis-website;
devShell = with pkgs; mkShell {
buildInputs = [
nodejs-18_x
yarn
];
};
}
);
}