Skip to content

Commit

Permalink
Merge pull request #11 from accentor/fix/flake-build
Browse files Browse the repository at this point in the history
Fix flake build
  • Loading branch information
chvp authored Sep 16, 2023
2 parents d9318bf + 6903036 commit d405be2
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 25 deletions.
73 changes: 52 additions & 21 deletions flake.lock

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

7 changes: 3 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
description = "A modern music server focusing on metadata";
inputs = {
api = {
url = "github:accentor/api/v0.19.0";
url = "github:accentor/api/v0.19.1";
inputs = {
devshell.follows = "devshell";
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs";
};
};
web = {
url = "github:accentor/web/v0.31.1";
url = "github:accentor/web/v0.32.0";
inputs = {
devshell.follows = "devshell";
flake-utils.follows = "flake-utils";
Expand All @@ -21,7 +21,6 @@
url = "github:numtide/devshell";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
flake-utils = {
Expand All @@ -36,7 +35,7 @@
accentor-api = api.packages.${system}.default;
accentor-web = web.packages.${system}.default;
};
devShell = let pkgs = import nixpkgs { inherit system; overlays = [ devshell.overlay ]; }; in
devShell = let pkgs = import nixpkgs { inherit system; overlays = [ devshell.overlays.default ]; }; in
pkgs.devshell.mkShell {
name = "Accentor flake";
packages = [ pkgs.nixpkgs-fmt ];
Expand Down

0 comments on commit d405be2

Please sign in to comment.