feat(nix): add devShell
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
parent
950f921c09
commit
b324778be7
3
.gitignore
vendored
3
.gitignore
vendored
@ -22,6 +22,9 @@ Debug
|
|||||||
build
|
build
|
||||||
/build-*
|
/build-*
|
||||||
|
|
||||||
|
# direnv / Nix
|
||||||
|
.direnv/
|
||||||
|
|
||||||
# Install dirs
|
# Install dirs
|
||||||
install
|
install
|
||||||
/install-*
|
/install-*
|
||||||
|
@ -48,6 +48,11 @@
|
|||||||
in
|
in
|
||||||
packages // {default = packages.prismlauncher;};
|
packages // {default = packages.prismlauncher;};
|
||||||
|
|
||||||
|
devShells.default = pkgs.mkShell {
|
||||||
|
inputsFrom = [self.packages.${system}.default];
|
||||||
|
buildInputs = with pkgs; [ccache ninja];
|
||||||
|
};
|
||||||
|
|
||||||
overlay = final: packagesFn;
|
overlay = final: packagesFn;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user