File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
=haskell.nix= is an experimental new builder for Haskell packages.
11
11
12
12
It works by automatically translating your Cabal or Stack project and
13
- its dependencies into Nix code. It provides IFD (imports from derviation )
14
- functions that can minimize the amount of nix code you need to add.
13
+ its dependencies into Nix code. It provides IFD (import from derivation )
14
+ functions that can minimize the amount of Nix code you need to add.
15
15
16
16
For the documentation, see https://input-output-hk.github.io/haskell.nix/.
17
17
@@ -21,10 +21,10 @@ For =cabal.project= project add a =default.nix=:
21
21
22
22
#+begin_src sh
23
23
let
24
- # Fetch the latest haskell.nix and import its default.nix
24
+ # Fetch the latest haskell.nix and import its default.nix
25
25
haskellNix = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {};
26
26
# haskell.nix provides access to the nixpkgs pins which are used by our CI, hence
27
- # you will be more likely to get cache hits when using these.
27
+ # you will be more likely to get cache hits when using these.
28
28
# But you can also just use your own, e.g. '<nixpkgs>'
29
29
nixpkgsSrc = haskellNix.sources.nixpkgs-1909;
30
30
# haskell.nix provides some arguments to be passed to nixpkgs, including some patches
You can’t perform that action at this time.
0 commit comments