day2: update - use implement ordering like normal people
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
22
flake.nix
22
flake.nix
@@ -13,18 +13,18 @@
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
src = ./.;
|
||||
in
|
||||
{
|
||||
devShells = with pkgs; rec {
|
||||
default = mkShell {
|
||||
buildInputs = [ ghc ];
|
||||
};
|
||||
withLsp = mkShell {
|
||||
buildInputs = [
|
||||
ghc
|
||||
haskell-language-server
|
||||
];
|
||||
};
|
||||
with pkgs; {
|
||||
devShells.default = mkShell {
|
||||
buildInputs = [
|
||||
ghc
|
||||
haskell-language-server
|
||||
];
|
||||
};
|
||||
apps.default = {
|
||||
type = "app";
|
||||
program = "${ghc}/bin/runhaskell";
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user