2013-09-02 11:36:54 +02:00
|
|
|
{ cabal, bytestringLexing, cairo, Chart, ChartCairo, colour
|
2013-09-02 13:20:19 +02:00
|
|
|
, dataDefault, lens, regexTdfa, strptime, time, transformers
|
2012-09-18 11:57:56 +02:00
|
|
|
, vcsRevision
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "timeplot";
|
2014-05-16 21:28:24 +02:00
|
|
|
version = "1.0.25";
|
|
|
|
sha256 = "14zyzr53gpp0i7wx49zzdrndqdhsw3q4z3w5hdl8c4m541pr25fw";
|
2012-09-18 11:57:56 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-09-02 13:20:19 +02:00
|
|
|
bytestringLexing cairo Chart ChartCairo colour dataDefault lens
|
|
|
|
regexTdfa strptime time transformers vcsRevision
|
2012-09-18 11:57:56 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://haskell.org/haskellwiki/Timeplot";
|
|
|
|
description = "A tool for visualizing time series from log files";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|