2013-02-02 20:26:09 +01:00
|
|
|
{ cabal, cairo, deepseq, fgl, ghcHeapView, graphviz, gtk, mtl
|
|
|
|
, svgcairo, text, transformers, xdot
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "ghc-vis";
|
2013-06-10 11:26:50 +02:00
|
|
|
version = "0.7.1";
|
|
|
|
sha256 = "05j3yw1276wvy4va7r7pbnvhjg1k1mxzp4baxcb9jlb5dxfh0daa";
|
2013-02-02 20:26:09 +01:00
|
|
|
buildDepends = [
|
|
|
|
cairo deepseq fgl ghcHeapView graphviz gtk mtl svgcairo text
|
|
|
|
transformers xdot
|
|
|
|
];
|
2013-08-08 15:43:45 +02:00
|
|
|
postInstall = ''
|
2013-08-17 11:39:11 +02:00
|
|
|
ensureDir "$out/share/ghci"
|
|
|
|
ln -s "$out/share/$pname-$version/ghci" "$out/share/ghci/$pname"
|
|
|
|
'';
|
2013-02-02 20:26:09 +01:00
|
|
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2013-02-02 20:26:09 +01:00
|
|
|
};
|
|
|
|
})
|