mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
chore: run alejandra
This commit is contained in:
parent
c509d80b58
commit
79ee2b4908
9 changed files with 169 additions and 147 deletions
|
|
@ -14,19 +14,28 @@ in
|
|||
|
||||
hlib = pkgs.haskell.lib;
|
||||
|
||||
callHackage = {name, version}:
|
||||
let pkg = pkgs.haskell.packages.ghc910.callHackage name version {};
|
||||
in hlib.dontCheck (hlib.doJailbreak pkg);
|
||||
callHackage = {
|
||||
name,
|
||||
version,
|
||||
}: let
|
||||
pkg = pkgs.haskell.packages.ghc910.callHackage name version {};
|
||||
in
|
||||
hlib.dontCheck (hlib.doJailbreak pkg);
|
||||
in {
|
||||
name = "flora";
|
||||
packages = with pkgs;
|
||||
let
|
||||
packages = with pkgs; let
|
||||
haskellPackages = haskell.packages.ghc910;
|
||||
in
|
||||
# These don't build directly and need to be pinned
|
||||
map callHackage [
|
||||
{name = "fourmolu"; version = "0.17.0.0";}
|
||||
{name = "postgresql-migration"; version = "0.2.1.8";}
|
||||
{
|
||||
name = "fourmolu";
|
||||
version = "0.17.0.0";
|
||||
}
|
||||
{
|
||||
name = "postgresql-migration";
|
||||
version = "0.2.1.8";
|
||||
}
|
||||
]
|
||||
++ [
|
||||
haskellPackages.ghcid
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue