2013-09-16 01:50:04 -07:00
|
|
|
{ cabal, aeson, csv, filepath, HDBC, HDBCSqlite3, HStringTemplate
|
2014-06-03 02:36:32 -07:00
|
|
|
, pandoc, parsec, scientific, split, text, time
|
|
|
|
, unorderedContainers, xhtml, yaml
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2010-09-07 05:58:07 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-07 05:58:07 -07:00
|
|
|
pname = "yst";
|
2014-06-03 02:36:32 -07:00
|
|
|
version = "0.4.1";
|
|
|
|
sha256 = "199awgpxn9131a7ijxvvbc4mi1yasnllbpj77k27brx00j87v3nq";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-09-16 01:50:04 -07:00
|
|
|
aeson csv filepath HDBC HDBCSqlite3 HStringTemplate pandoc parsec
|
2014-06-03 02:36:32 -07:00
|
|
|
scientific split text time unorderedContainers xhtml yaml
|
2010-09-07 05:58:07 -07:00
|
|
|
];
|
|
|
|
meta = {
|
2011-08-07 12:33:49 -07:00
|
|
|
homepage = "http://github.com/jgm/yst";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Builds a static website from templates and data in YAML or CSV files";
|
2011-08-07 12:33:49 -07:00
|
|
|
license = "GPL";
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-07 05:58:07 -07:00
|
|
|
};
|
|
|
|
})
|