summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ghc-heap-view/default.nix
blob: c32d3be53080dc6e2bbd0b742a939a620896b792 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, binary, transformers }:

cabal.mkDerivation (self: {
  pname = "ghc-heap-view";
  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;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})