25 lines
756 B
Nix
25 lines
756 B
Nix
{ cabal, cairo, deepseq, fgl, ghcHeapView, graphviz, gtk, mtl
|
|
, svgcairo, text, transformers, xdot
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ghc-vis";
|
|
version = "0.7.1";
|
|
sha256 = "05j3yw1276wvy4va7r7pbnvhjg1k1mxzp4baxcb9jlb5dxfh0daa";
|
|
buildDepends = [
|
|
cairo deepseq fgl ghcHeapView graphviz gtk mtl svgcairo text
|
|
transformers xdot
|
|
];
|
|
postInstall = ''
|
|
ensureDir "$out/share/ghci"
|
|
ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname"
|
|
'';
|
|
meta = {
|
|
homepage = "http://felsin9.de/nnis/ghc-vis";
|
|
description = "Live visualization of data structures in GHCi";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|