-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
flake.nix
61 lines (55 loc) · 2.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
description = "A very basic flake for organice";
# Type 'nix develop' to enter a development shell with all programs
# and dependencies available.
# Using the exact same node version as in .nvmrc would be good.
# But it's hard to implement in Nix and takes a long time to compile.
# Other problems that the development shell fixes automatically (see shellHook):
# 1. In package.json, engines > node version is changed to "" to
# allow newer versions of node.
# 2. The dependency node-sass is removed from package.json because it
# cannot easily be installed on NixOS with yarn.
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
name = "dev-shell";
buildInputs = with pkgs; [
nodejs
# Install sass this way and remove it from package.json because that one requires gyp which doesn't work on nix:
nodePackages.sass
yarn
# Required for compile_docs.sh:
emacs
pandoc
# Required to upload docs:
lftp
# Required in transient_env_vars.sh
gnused
# Required in entrypoint.sh
nodePackages.serve
];
shellHook = ''
echo
read -rp "Apply changes in package.json to work on NixOS? [Y/n] " ans
if [[ $ans =~ ^([Yy]|)$ ]]; then
sed -i \
-e 's/"node": ".*"/"node": ""/' \
-e '/"node-sass":/d' \
package.json
echo
echo "Note: Be careful to not accidentally commit this change!"
echo
fi
# Required for 'yarn start' to work:
export NODE_OPTIONS=--openssl-legacy-provider
'';
};
});
}