Skip to content

Commit

Permalink
fix(devshell): Use D components from nixpkgs upstream
Browse files Browse the repository at this point in the history
Avoid breaking the shell when making changes to derivations defined in this
repo.
  • Loading branch information
PetarKirov committed Jan 29, 2024
1 parent 8cd90e3 commit bd30ab8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
imports = [./pkgs ./lib/mk-gh-actions-matrix.nix];
perSystem = {final, ...}: {
devShells.default = import ./shell.nix {pkgs = final;};
perSystem = {pkgs, ...}: {
devShells.default = import ./shell.nix {inherit pkgs;};
};
};
}

0 comments on commit bd30ab8

Please sign in to comment.