2012-10-23 18:29:59 +02:00
|
|
|
{ cabal, csv, filepath, HDBC, HDBCSqlite3, HsSyck, HStringTemplate
|
|
|
|
, pandoc, parsec, split, time, utf8String, xhtml
|
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-03-10 00:26:26 +01:00
|
|
|
version = "0.3.1.1";
|
|
|
|
sha256 = "1wc2s5aan4rqdrpqgqvka5pqm3d691si5hdf0m0wpi2hzkwl3qv3";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-10-23 18:29:59 +02:00
|
|
|
csv filepath HDBC HDBCSqlite3 HsSyck HStringTemplate pandoc parsec
|
|
|
|
split time utf8String xhtml
|
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
|
|
|
};
|
|
|
|
})
|