Skip to content

Commit 2e5f3e6

Browse files
committed
Update nix-haskell pin, add splitmix import to module.nix
- Pin nix-haskell to commit with named attrset source-repository-packages - Add nix-haskell-patches/js/splitmix import to module.nix
1 parent f24e0c9 commit 2e5f3e6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

deps/nix-haskell

nix/module.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# into a project. Declares `obelisk.static` and `obelisk.frontend.js` options;
33
# when set, generates hackage overlay and wires assets into frontend/backend data dirs.
44
# frontend.js defaults to the project's GHCJS-cross-compiled frontend.
5-
{ config, lib, system, ... }:
5+
{ config, lib, system, nix-haskell-patches, ... }:
66

77
let obeliskLib = import ./lib.nix { inherit system; };
88

@@ -11,6 +11,10 @@ let obeliskLib = import ./lib.nix { inherit system; };
1111
frontendJs = config.obelisk.frontend.js;
1212

1313
in {
14+
imports = [
15+
"${nix-haskell-patches}/js/splitmix"
16+
];
17+
1418
options.obelisk = {
1519
static = lib.mkOption {
1620
type = lib.types.nullOr (lib.types.either lib.types.path lib.types.package);

0 commit comments

Comments
 (0)