mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
darcs: build with ghc 7.6.3 to avoid errors with 7.8.x
This commit is contained in:
parent
ebdd966bc6
commit
21a83ed49b
1 changed files with 4 additions and 3 deletions
|
@ -8270,10 +8270,11 @@ let
|
|||
|
||||
d4x = callPackage ../applications/misc/d4x { };
|
||||
|
||||
darcs = haskellPackages.darcs.override {
|
||||
darcs = haskellPackages_ghc763.darcs.override {
|
||||
# A variant of the Darcs derivation that containts only the executable and
|
||||
# thus has no dependencies on other Haskell packages.
|
||||
cabal = haskellPackages.cabal.override {
|
||||
# thus has no dependencies on other Haskell packages. We have to use the older
|
||||
# GHC 7.6.3 package set because darcs won't compile with 7.8.x.
|
||||
cabal = haskellPackages_ghc763.cabal.override {
|
||||
extension = self : super : {
|
||||
isLibrary = false;
|
||||
configureFlags = "-f-library " + super.configureFlags or "";
|
||||
|
|
Loading…
Reference in a new issue