File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ instantiate a package set.
81
81
# default.nix
82
82
let
83
83
# Import the Haskell.nix library,
84
- haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {} ;
84
+ haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz);
85
85
86
86
# Instantiate a package set using the generated file.
87
87
pkgSet = haskell.mkCabalProjectPkgSet {
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ selects packages from the larger package set.
108
108
``` nix
109
109
# shell.nix
110
110
let
111
- haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {} ;
111
+ haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz);
112
112
in
113
113
haskell.haskellPackages.ghcWithPackages (ps: with ps;
114
114
[ lens conduit conduit-extra ])
@@ -125,7 +125,7 @@ project.
125
125
126
126
``` nix
127
127
let
128
- haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {} ;
128
+ haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz);
129
129
in
130
130
haskell.snapshots."lts-13.18".alex.components.exes.alex
131
131
```
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ instantiate a package set.
43
43
# default.nix
44
44
let
45
45
# Import the Haskell.nix library,
46
- haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz) {} ;
46
+ haskell = import (builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz);
47
47
48
48
# Instantiate a package set using the generated file.
49
49
pkgSet = haskell.mkStackPkgSet {
You can’t perform that action at this time.
0 commit comments