summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/yst/default.nix
blob: af079e531871c37f91423eedfcc912f88f76546e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ cabal, Cabal, csv, filepath, HsSyck, HStringTemplate, pandoc
, parsec, split, time, utf8String, xhtml
}:

cabal.mkDerivation (self: {
  pname = "yst";
  version = "0.2.4.1";
  sha256 = "0y620p6kn1mky30fia63na5idppfjfmc828jcaa0ads08rmj5wgy";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [
    Cabal csv filepath 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
      self.stdenv.lib.maintainers.simons
    ];
  };
})