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