Skip to content

Commit

Permalink
Update Config and Doc files
Browse files Browse the repository at this point in the history
- Update Stack files
- Update NIX pipeline
- Update Cabal for tidal-core
- Add local README.md and LICENSE
  • Loading branch information
eilseq committed Feb 16, 2025
1 parent 9b495ee commit ba28c3a
Show file tree
Hide file tree
Showing 5 changed files with 746 additions and 13 deletions.
3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Packages are included for:
- tidal
- tidal-core
- tidal-link
- tidal-listener
- tidal-parse
Expand Down Expand Up @@ -45,6 +46,7 @@
project = pkgs.haskellPackages.extend (pkgs.haskell.lib.compose.packageSourceOverrides {
hosc = inputs.hosc; # Manually added as `hosc` 0.21 is not yet in nixpkgs.
tidal = ./.;
tidal-core = ./tidal-core;
tidal-link = ./tidal-link;
tidal-listener = ./tidal-listener;
tidal-parse = ./tidal-parse;
Expand All @@ -53,6 +55,7 @@
tidal-ghc = pkgs.haskellPackages.ghcWithPackages (hpkgs: [project.tidal]);
in {
tidal = project.tidal;
tidal-core = project.tidal-core;
tidal-link = project.tidal-link;
tidal-listener = project.tidal-listener;
tidal-parse = project.tidal-parse;
Expand Down
11 changes: 5 additions & 6 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
resolver: lts-22.8

packages:
- '.'
- 'tidal-parse'
- 'tidal-listener'
- 'tidal-link'
- "."
- "tidal-core"
- "tidal-parse"
- "tidal-listener"
- "tidal-link"

extra-deps:
- hosc-0.21
- haskellish-0.3.2.2


Loading

0 comments on commit ba28c3a

Please sign in to comment.