Skip to content

Commit 0db0918

Browse files
authored
Fix flake-utils usage in flake template (#24)
1 parent 82f3e8e commit 0db0918

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

template/flake.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
description = "A Tidal Cycles project. https://tidalcycles.org/";
33

4-
inputs.tidal.url = "github:mitchmindtree/tidalcycles.nix";
4+
inputs = {
5+
tidal.url = "github:mitchmindtree/tidalcycles.nix";
6+
utils.url = "github:numtide/flake-utils";
7+
};
58

69
outputs =
710
inputs:
8-
inputs.tidal.utils.eachSupportedSystem (system: {
11+
inputs.utils.lib.eachDefaultSystem (system: {
912
devShells = inputs.tidal.devShells.${system};
1013
formatter = inputs.tidal.formatter.${system};
1114
});

0 commit comments

Comments
 (0)