Skip to content

Commit

Permalink
Merge pull request #1 from mitchmindtree/sss-create-dev
Browse files Browse the repository at this point in the history
fix: Add `hosc` input to nix flake to support v0.21. Update nixpkgs flake input.
  • Loading branch information
sss-create authored Jan 18, 2025
2 parents 7be28ed + 9e1c991 commit e86b968
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
30 changes: 24 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# Manually include `hosc` at the `v0.21.0`
hosc = {
flake = false;
url = "github:rd--/hosc?rev=43bb2d07ff8d65cf9e51d1f5f96d0e6ffd6fe8fa";
};
};

outputs = inputs: let
Expand All @@ -38,6 +43,7 @@

mkPackages = pkgs: let
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-link = ./tidal-link;
tidal-listener = ./tidal-listener;
Expand Down

0 comments on commit e86b968

Please sign in to comment.