summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-02-29 10:53:35 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-02-29 10:54:25 +0100
commit0294fc5bbda95f80d39a6242388787d6d3576701 (patch)
tree8ee2c410b71af4822de78f9616f1e2e9694f37a5 /pkgs/development/haskell-modules
parentbc52fa05080b40a2b60fd1a7ab20d4ea510a3807 (diff)
downloadnixlib-0294fc5bbda95f80d39a6242388787d6d3576701.tar
nixlib-0294fc5bbda95f80d39a6242388787d6d3576701.tar.gz
nixlib-0294fc5bbda95f80d39a6242388787d6d3576701.tar.bz2
nixlib-0294fc5bbda95f80d39a6242388787d6d3576701.tar.lz
nixlib-0294fc5bbda95f80d39a6242388787d6d3576701.tar.xz
nixlib-0294fc5bbda95f80d39a6242388787d6d3576701.tar.zst
nixlib-0294fc5bbda95f80d39a6242388787d6d3576701.zip
haskellPackages: fix evaluation
It seems `self` was wanted instead of `pkgs` by the author of 3844206.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 1b2a82f3dcb7..4fa6d2f78bbd 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -323,7 +323,7 @@ self: super: {
   github-types = dontCheck super.github-types;          # http://hydra.cryp.to/build/1114046/nixlog/1/raw
   hadoop-rpc = dontCheck super.hadoop-rpc;              # http://hydra.cryp.to/build/527461/nixlog/2/raw
   hasql = dontCheck super.hasql;                        # http://hydra.cryp.to/build/502489/nixlog/4/raw
-  hjsonschema = overrideCabal (super.hjsonschema.override { hjsonpointer = pkgs.hjsonpointer_0_2_0_4; }) (drv: { testTarget = "local"; });
+  hjsonschema = overrideCabal (super.hjsonschema.override { hjsonpointer = self.hjsonpointer_0_2_0_4; }) (drv: { testTarget = "local"; });
   hoogle = overrideCabal super.hoogle (drv: { testTarget = "--test-option=--no-net"; });
   marmalade-upload = dontCheck super.marmalade-upload;  # http://hydra.cryp.to/build/501904/nixlog/1/raw
   network-transport-tcp = dontCheck super.network-transport-tcp;