Skip to content
Snippets Groups Projects
Commit e378fea9 authored by Jens Nolte's avatar Jens Nolte
Browse files

Provide development tools in `nix develop` shell

parent a46be5d9
No related branches found
No related tags found
No related merge requests found
Pipeline #2637 failed
...@@ -23,6 +23,17 @@ ...@@ -23,6 +23,17 @@
defaultPackage = forAllSystems (system: self.packages.${system}.quasar); defaultPackage = forAllSystems (system: self.packages.${system}.quasar);
devShell = forAllSystems (system: self.packages.${system}.quasar.env); devShell = forAllSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in pkgs.mkShell {
buildInputs = [
pkgs.cabal-install
pkgs.ghcid
pkgs.haskell-language-server
];
inputsFrom = builtins.attrValues self.packages.${system};
}
);
}; };
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment