Apply nix-rfc formatting to flake
parent
ba2e16d000
commit
23c65a00a8
15
flake.nix
15
flake.nix
|
@ -32,13 +32,15 @@
|
|||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }: {
|
||||
outputs =
|
||||
{ self, nixpkgs }:
|
||||
{
|
||||
devShell.x86_64-linux =
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
|
||||
ghc' = pkgs.haskell.packages.ghc928.ghcWithHoogle (self: with self;
|
||||
[
|
||||
ghc' = pkgs.haskell.packages.ghc928.ghcWithHoogle (
|
||||
self: with self; [
|
||||
relude
|
||||
split
|
||||
|
||||
|
@ -69,13 +71,16 @@
|
|||
'';
|
||||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs.haskellPackages; [
|
||||
buildInputs =
|
||||
with pkgs.haskellPackages;
|
||||
[
|
||||
ghc'
|
||||
|
||||
haskell-language-server
|
||||
ghcid
|
||||
hlint
|
||||
] ++ (with pkgs; [
|
||||
]
|
||||
++ (with pkgs; [
|
||||
kotlin
|
||||
jdk23
|
||||
nixfmt-rfc-style
|
||||
|
|
Loading…
Reference in New Issue