about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ghc-heap-view/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-08-22 19:29:09 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-08-22 19:29:09 +0200
commitc1e62e7e91403112ad64b258e9a192dffba17144 (patch)
tree4486172766655232a00360791fc2779296d37e98 /pkgs/development/libraries/haskell/ghc-heap-view/default.nix
parentaf0e6b6b2b41eb7ebd3484fb4fbefd06a5b2a8b2 (diff)
parentd28a189af684e9ef61cc26b83e6e3798fe44b6f8 (diff)
Merge branch 'master' into x-updates
Diffstat (limited to 'pkgs/development/libraries/haskell/ghc-heap-view/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/ghc-heap-view/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/ghc-heap-view/default.nix b/pkgs/development/libraries/haskell/ghc-heap-view/default.nix
index 62b07030a4606..679ced622d9b3 100644
--- a/pkgs/development/libraries/haskell/ghc-heap-view/default.nix
+++ b/pkgs/development/libraries/haskell/ghc-heap-view/default.nix
@@ -5,6 +5,10 @@ cabal.mkDerivation (self: {
   version = "0.5.1";
   sha256 = "1qi7f3phj2j63x1wd2cvk36945cxd84s12zs03hlrn49wzx2pf1n";
   buildDepends = [ binary transformers ];
+  postInstall = ''
+    ensureDir "$out/share/ghci"
+    ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname"
+  '';
   meta = {
     description = "Extract the heap representation of Haskell values and thunks";
     license = self.stdenv.lib.licenses.bsd3;