summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorJirka Marsik <jiri.marsik89@gmail.com>2014-10-28 18:41:22 +0100
committerJirka Marsik <jiri.marsik89@gmail.com>2014-10-28 18:41:22 +0100
commitce6f7f6ff01c7bbcd6b1696f799550e287be5ac0 (patch)
treea7a788b4460e5094d85b76d8420df5bfbcde5923 /pkgs/top-level
parent6c6121964457d3fc81b3df37cc2aaa62b9a91400 (diff)
downloadnixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.tar
nixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.tar.gz
nixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.tar.bz2
nixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.tar.lz
nixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.tar.xz
nixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.tar.zst
nixlib-ce6f7f6ff01c7bbcd6b1696f799550e287be5ac0.zip
Added ghcid-0.2
The .nix file was generated by cabal2nix. However, I still had to set
doCheck = false since some of the tests try to run `cabal repl` which
presupposes access to $HOME/.cabal and thus cannot be done from the Nix
sandbox where HOME = /homeless-shelter.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/haskell-packages.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index a5520dd814d1..892bb1304350 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -912,6 +912,7 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
     cabal = self.cabal.override { enableLibraryProfiling = false; }; # pkg cannot be built with profiling enabled
   };
 
+  ghcid = callPackage ../development/tools/haskell/ghcid {};
 
   ghcServer = callPackage ../development/libraries/haskell/ghc-server {};