tangled
alpha
login
or
join now
comet.sh
/
comet
15
fork
atom
Music streaming on ATProto!
15
fork
atom
overview
issues
pulls
pipelines
fix(flake): put inotify-tools behind a linux conditional
ovyerus.com
3 months ago
4b70a7b5
0acdf80b
verified
This commit was signed with the committer's
known signature
.
ovyerus.com
SSH Key Fingerprint:
SHA256:mXbp9WNBIT0nRNe28t2hrxfSwnSX7UBeW2DVlIyf0uw=
+7
-6
1 changed file
expand all
collapse all
unified
split
flake.nix
+7
-6
flake.nix
···
14
14
defaultForSystems = fn: forSystems (pkgs: {default = fn pkgs;});
15
15
in {
16
16
devShells = defaultForSystems (pkgs:
17
17
-
pkgs.mkShell {
18
18
-
nativeBuildInputs = with pkgs; [elixir erlang inotify-tools nodejs pnpm tailwindcss_4 watchman];
17
17
+
with pkgs;
18
18
+
mkShell {
19
19
+
nativeBuildInputs = [elixir erlang nodejs pnpm tailwindcss_4 watchman] ++ (lib.optional stdenv.isLinux [inotify-tools]);
19
20
20
20
-
shellHook = ''
21
21
-
export TAILWINDCSS_PATH="${pkgs.lib.getExe pkgs.tailwindcss_4}"
22
22
-
'';
23
23
-
});
21
21
+
shellHook = ''
22
22
+
export TAILWINDCSS_PATH="${lib.getExe tailwindcss_4}"
23
23
+
'';
24
24
+
});
24
25
};
25
26
}