22 lines
709 B
Nix
22 lines
709 B
Nix
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
|
|
|
{ cabal, binary, deepseq, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-heap-view";
|
|
version = "0.5.3";
|
|
sha256 = "1jcqi4gahxmhd61hl75wgb9dp99kxld68860jnd9x4hnp5cd33q0";
|
|
buildDepends = [ binary transformers ];
|
|
testDepends = [ deepseq ];
|
|
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 = with self.stdenv.lib.maintainers; [ andres ];
|
|
};
|
|
})
|