21 lines
665 B
Nix
21 lines
665 B
Nix
# 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 ];
|
|
};
|
|
})
|