From d895bad12a60b88c6a463f771ee826338acaea9c Mon Sep 17 00:00:00 2001 From: Christoph Bauer Date: Sun, 24 May 2020 12:16:44 +0200 Subject: [PATCH] Fix dependencies issues of postgresql-syntax and re+base --- .../development/haskell-modules/configuration-nix.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 6d0c93e85a5..2487ea8b07a 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -750,4 +750,15 @@ self: super: builtins.intersectAttrs super { ''; }); + postgresql-syntax = super.postgresql-syntax.override { + rerebase = self.rerebase_1_6_1; + }; + + rerebase_1_6_1 = super.rerebase_1_6_1.override { + rebase = self.rebase_1_6_1; + }; + + rebase_1_6_1 = super.rebase_1_6_1.override { + selective = super.selective_0_4_1; + }; }