fix flake
This commit is contained in:
parent
2ae3daf0f9
commit
fe4155d26f
1 changed files with 3 additions and 10 deletions
13
flake.nix
13
flake.nix
|
@ -26,17 +26,11 @@
|
|||
# Dependency overrides go here
|
||||
wavefront = jailbreakUnbreak haskellPackages.wavefront;
|
||||
};
|
||||
test = import ./test.nix {inherit pkgs vulkan-tutorial;};
|
||||
|
||||
defaultPackage = self.packages.${system}.${packageName};
|
||||
|
||||
checks = {
|
||||
test = import ./test.nix {inherit pkgs; vulkan-tutorial = packages.vulkan-tutorial;};
|
||||
#test = flake-utils.lib.mkApp ({ drv = self.packages.${system}.test; });
|
||||
default = vulkan-tutorial;
|
||||
};
|
||||
|
||||
devShell = haskellPackages.shellFor {
|
||||
packages = p: [ defaultPackage ];
|
||||
devShells.${system} = haskellPackages.shellFor {
|
||||
packages = p: [ packages.vulkan-tutorial ];
|
||||
withHoogle = true;
|
||||
buildInputs = (with haskellPackages; [
|
||||
haskell-language-server
|
||||
|
@ -67,7 +61,6 @@
|
|||
# ];
|
||||
# inputsFrom = builtins.attrValues self.packages.${system};
|
||||
#};
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue