Skip to content

Commit df4eb75

Browse files
committed
skip quarto for mac, nixpkgs support dropped
1 parent 07c5d5e commit df4eb75

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

flake.nix

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222
# (whacked-setup + /bash/node_shortcuts.sh)
2323
];
2424
} {
25-
nativeBuildInputs = [
26-
pkgs.quarto
27-
];
25+
nativeBuildInputs = (
26+
if pkgs.stdenv.isDarwin then [
27+
] else [
28+
pkgs.quarto
29+
]
30+
);
2831

2932
buildInputs = [
3033
pkgs.python3

0 commit comments

Comments
 (0)