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