blob: b46e6f87e71fa60f35c19645ec1e3b6c2c3ca81b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ lib
, sources ? import ../nix/sources.nix
, ...
}:
(self: super: {
haskell = super.haskell // {
packageOverrides = self: super: {
achat = (self.callCabal2nix "achat" ../. { }).overrideAttrs (_: {
postInstall = ''
mkdir -p $out/share
cp -a ./dist/build/achat/achat.jsexe $out/share
'';
});
haskell-halogen-core = lib.dontCheck (self.callCabal2nix "haskell-halogen-core" sources.haskell-halogen { });
protolude = lib.dontHaddock (
lib.appendConfigureFlags (lib.doJailbreak super.protolude) [
"--ghc-option=-fno-safe-haskell"
"--ghc-option=-fno-warn-x-partial"
]);
clay = self.callHackage "clay" "0.15.0" { };
};
};
})
|