mirror of
https://github.com/ilyakooo0/servant-reflex.git
synced 2024-11-05 03:30:41 +03:00
14 lines
311 B
Nix
14 lines
311 B
Nix
{ reflex-platform, ... }:
|
|
let
|
|
|
|
nixpkgs = (import <nixpkgs> {});
|
|
dontCheck = nixpkgs.pkgs.haskell.lib.dontCheck;
|
|
cabal2nixResult = reflex-platform.cabal2nixResult;
|
|
|
|
in
|
|
reflex-platform.ghcjs.override {
|
|
overrides = self: super: {
|
|
reflex-dom = dontCheck (self.callPackage deps/reflex-dom {});
|
|
};
|
|
}
|