fix shader compilations in shell
This commit is contained in:
parent
1e4ae17621
commit
cce7947523
1 changed files with 4 additions and 2 deletions
|
@ -28,11 +28,13 @@
|
||||||
devShell = haskellPackages.shellFor {
|
devShell = haskellPackages.shellFor {
|
||||||
packages = p: [ defaultPackage ];
|
packages = p: [ defaultPackage ];
|
||||||
withHoogle = true;
|
withHoogle = true;
|
||||||
buildInputs = with haskellPackages; [
|
buildInputs = (with haskellPackages; [
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
ghcid
|
ghcid
|
||||||
cabal-install
|
cabal-install
|
||||||
];
|
]) ++ (with pkgs; [
|
||||||
|
shaderc
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
#devShell = pkgs.mkShell {
|
#devShell = pkgs.mkShell {
|
||||||
# buildInputs = with haskellPackages; [
|
# buildInputs = with haskellPackages; [
|
||||||
|
|
Loading…
Reference in a new issue