2013-09-08 23:45:59 +04:00
|
|
|
{ cabal, bytestringLexing, cairo, colour, HUnit, mtl, strptime
|
|
|
|
, time, vcsRevision
|
2012-09-18 13:58:05 +04:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "splot";
|
2013-09-07 22:55:42 +04:00
|
|
|
version = "0.3.11";
|
|
|
|
sha256 = "0mpyfmafjjcf85v740h69p5mggyqsq3li8m1fa5c0z4rdd0395an";
|
2012-09-18 13:58:05 +04:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-09-08 23:45:59 +04:00
|
|
|
bytestringLexing cairo colour HUnit mtl strptime time vcsRevision
|
2012-09-18 13:58:05 +04:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.haskell.org/haskellwiki/Splot";
|
|
|
|
description = "A tool for visualizing the lifecycle of many concurrent multi-staged processes";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|