configuration-common.nix: fix build tools
This commit is contained in:
parent
1a668f79b2
commit
9ed54a38bd
|
@ -341,7 +341,7 @@ self: super: {
|
|||
hsbencher = dontCheck super.hsbencher;
|
||||
hsexif = dontCheck super.hsexif;
|
||||
hspec-server = dontCheck super.hspec-server;
|
||||
HTF = addTestToolDepend (dontCheck super.HTF) self.cpphs;
|
||||
HTF = addBuildTool (dontCheck super.HTF) self.cpphs;
|
||||
htsn = dontCheck super.htsn;
|
||||
htsn-import = dontCheck super.htsn-import;
|
||||
http-link-header = dontCheck super.http-link-header; # non deterministic failure https://hydra.nixos.org/build/75041105
|
||||
|
|
|
@ -517,14 +517,11 @@ self: super: builtins.intersectAttrs super {
|
|||
blank-canvas = dontCheck super.blank-canvas;
|
||||
blank-canvas_0_6_2 = dontCheck super.blank-canvas_0_6_2;
|
||||
|
||||
# cabal2nix generates a dependency on base-compat, which is the wrong version
|
||||
base-compat-batteries = super.base-compat-batteries.override {
|
||||
base-compat = super.base-compat_0_10_1;
|
||||
};
|
||||
|
||||
# Custom setup needs pg_config
|
||||
HDBC-postgresql = addBuildTool super.HDBC-postgresql pkgs.postgresql;
|
||||
|
||||
# Custom setup needs sdl-config
|
||||
SDL = addBuildTool super.SDL pkgs.SDL;
|
||||
neat-interpolation = addBuildTool super.neat-interpolation self.HTF;
|
||||
hnix = addBuildTool super.hnix pkgs.nix;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue