nixpkgs/pkgs/development/libraries/haskell/yst/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

23 lines
699 B
Nix

{ cabal, csv, filepath, HDBC, HDBCSqlite3, HsSyck, HStringTemplate
, pandoc, parsec, split, time, utf8String, xhtml
}:
cabal.mkDerivation (self: {
pname = "yst";
version = "0.3.1.1";
sha256 = "1wc2s5aan4rqdrpqgqvka5pqm3d691si5hdf0m0wpi2hzkwl3qv3";
isLibrary = false;
isExecutable = true;
buildDepends = [
csv filepath HDBC HDBCSqlite3 HsSyck HStringTemplate pandoc parsec
split time utf8String xhtml
];
meta = {
homepage = "http://github.com/jgm/yst";
description = "Builds a static website from templates and data in YAML or CSV files";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})