about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hakyll/default.nix
blob: 8c544ccc75e0c9a38f342f3846c55b6ba0669d60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{cabal, binary, blazeHtml, hamlet, hopenssl, mtl, network, pandoc, regexBase
, regexPCRE, snapCore, snapServer, strictConcurrency}:

cabal.mkDerivation (self : {
  pname = "hakyll";
  version = "3.2.0.3";
  sha256 = "0biy9p662anhhlmwa502iy8cck597q0vlwj57l6cj8kpyxj4g0lz";
  propagatedBuildInputs =
    [ binary blazeHtml hamlet hopenssl mtl network pandoc regexBase
     regexPCRE snapCore snapServer strictConcurrency
    ];
  meta = {
    description = "A simple static site generator library";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})