feat(nix): add devShell

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu
2023-03-14 10:51:47 +01:00
parent 950f921c09
commit b324778be7
3 changed files with 9 additions and 0 deletions

View File

@ -48,6 +48,11 @@
in
packages // {default = packages.prismlauncher;};
devShells.default = pkgs.mkShell {
inputsFrom = [self.packages.${system}.default];
buildInputs = with pkgs; [ccache ninja];
};
overlay = final: packagesFn;
});
}