mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Haskell: explicit reflex-dom dependencies for GHCJS
When building `reflex-dom` for GHCJS, the following dependencies are not needed and will fail to build: glib, gtk3, webkitgtk3, webkitgtk3-javascriptcore. Now we explicitely need the dependencies needed for building for GHCJS.
This commit is contained in:
parent
1da4d8b5c9
commit
9d03afa429
@ -103,4 +103,12 @@ self: super: {
|
||||
patches = [ ./ghc-paths-nix-ghcjs.patch ];
|
||||
});
|
||||
|
||||
reflex-dom = overrideCabal super.reflex-dom (drv: {
|
||||
buildDepends = [
|
||||
self.aeson self.base self.bytestring self.containers self.data-default
|
||||
self.dependent-map self.dependent-sum self.ghcjs-dom self.lens self.mtl
|
||||
self.ref-tf self.reflex self.safe self.semigroups self.text self.these
|
||||
self.time self.transformers
|
||||
];
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user