Skip to content

Commit

Permalink
safe-money: Fix dependencies for safe-money-*
Browse files Browse the repository at this point in the history
They all depend on safe-money-0.7, but hackage2nix made them incorrectly
depend on safe-money-0.6

We should be able to remove this 'hack' as soon as the new Stackage LTS
comes out, as safe-money-0.7 will then be the default version.
  • Loading branch information
arianvp authored and Mic92 committed Sep 10, 2018
1 parent 406e0a6 commit 23bbe26
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Expand Up @@ -1130,4 +1130,12 @@ self: super: {

# https://github.com/snapframework/xmlhtml/pull/37
xmlhtml = doJailbreak super.xmlhtml;

# https://github.com/NixOS/nixpkgs/issues/46467
safe-money-aeson = super.safe-money-aeson.override { safe-money = self.safe-money_0_7; };
safe-money-store = super.safe-money-store.override { safe-money = self.safe-money_0_7; };
safe-money-cereal = super.safe-money-cereal.override { safe-money = self.safe-money_0_7; };
safe-money-serialise = super.safe-money-serialise.override { safe-money = self.safe-money_0_7; };
safe-money-xmlbf = super.safe-money-xmlbf.override { safe-money = self.safe-money_0_7; };

} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super

0 comments on commit 23bbe26

Please sign in to comment.