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