nixpkgs/pkgs/development/tools/haskell/timeplot/default.nix

25 lines
774 B
Nix

{ cabal, bytestringLexing, cairo, Chart, colour, dataAccessor
, dataAccessorTemplate, regexTdfa, strptime, time, transformers
, vcsRevision
}:
cabal.mkDerivation (self: {
pname = "timeplot";
version = "1.0.19";
sha256 = "1mwhrcjavx56z3msdf5zqvqlx5m3hbcw85f22h8p9wvfgn79aydx";
isLibrary = false;
isExecutable = true;
buildDepends = [
bytestringLexing cairo Chart colour dataAccessor
dataAccessorTemplate regexTdfa strptime time transformers
vcsRevision
];
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;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})