2012-09-18 11:58:05 +02:00
|
|
|
{ cabal, bytestringLexing, cairo, Chart, colour, HUnit, mtl
|
|
|
|
, strptime, time, vcsRevision
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "splot";
|
2013-01-04 19:17:23 +01:00
|
|
|
version = "0.3.8";
|
|
|
|
sha256 = "188v9c070wn6gr47k5q55gsiph0lj96d96bss76gz7znknfj9rm3";
|
2012-09-18 11:58:05 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
bytestringLexing cairo Chart colour HUnit mtl strptime time
|
|
|
|
vcsRevision
|
|
|
|
];
|
|
|
|
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;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
2012-09-18 11:58:05 +02:00
|
|
|
};
|
|
|
|
})
|