-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHaskellPackagesNix.hs
35 lines (29 loc) · 1.43 KB
/
HaskellPackagesNix.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{-# LANGUAGE QuasiQuotes #-}
-- |
-- Copyright : (c) Crown Copyright GCHQ
-- Description : A file defining a haskell package set
module Bootstrap.Data.Bootstrappable.HaskellPackagesNix (HaskellPackagesNix, haskellPackagesNixFor) where
import Bootstrap.Data.Bootstrappable
( Bootstrappable (bootstrapContent, bootstrapName, bootstrapReason),
bootstrapContentNix,
)
import Bootstrap.Data.ProjectType (HaskellOptions, ProjectType (Haskell))
import Bootstrap.Nix.Expr (Expr (EFunc), FunctionArgs (FASet), IsNixExpr (toNixExpr), nixident)
import Bootstrap.Nix.Expr.Haskell (haskellPackagesExpr)
-- | A separate nix file defining the haskell package set
newtype HaskellPackagesNix = HaskellPackagesNix HaskellOptions
deriving stock (Eq, Show)
instance Bootstrappable HaskellPackagesNix where
bootstrapName = const "nix/haskell-packages.nix"
bootstrapReason = const "This configures the haskell package set from which your dependencies will be pulled."
bootstrapContent = bootstrapContentNix
instance IsNixExpr HaskellPackagesNix where
toNixExpr (HaskellPackagesNix opts) =
EFunc
(FASet $ one [nixident|nixpkgs|])
(haskellPackagesExpr opts)
-- | Gives a `HaskellPackagesNix` (or `Nothing`) as appropriate for the project details
-- given.
haskellPackagesNixFor :: ProjectType -> Maybe HaskellPackagesNix
haskellPackagesNixFor (Haskell haskellOptions) = Just $ HaskellPackagesNix haskellOptions
haskellPackagesNixFor _ = Nothing