2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, cairo, colour, dataAccessor, dataAccessorTemplate, mtl
|
|
|
|
, time
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-11-19 19:34:41 +00:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-19 19:34:41 +00:00
|
|
|
pname = "Chart";
|
2012-08-03 16:42:46 +01:00
|
|
|
version = "0.16";
|
|
|
|
sha256 = "1mb8hgxj0i5s7l061pfn49m5f6qdwvmgy6ni7jmg85vpy6b7jra3";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
cairo colour dataAccessor dataAccessorTemplate mtl time
|
2011-08-10 00:00:20 +01:00
|
|
|
];
|
2010-11-19 19:34:41 +00:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://www.dockerz.net/software/chart.html";
|
2010-11-19 19:34:41 +00:00
|
|
|
description = "A library for generating 2D Charts and Plots";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-19 19:34:41 +00:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|