about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hamlet/default.nix
blob: 6eb100c36f373e180a6aab5ce47f3bf75ee8bb60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, blazeBuilder, blazeHtml, failure, parsec, text}:

cabal.mkDerivation (self : {
  pname = "hamlet";
  version = "0.8.2.1";
  sha256 = "0798ic6qap4npw2rx42xcgmi1fcbwqvyic5x6vyyf6abvxv16925";
  propagatedBuildInputs =
    [blazeBuilder blazeHtml failure parsec text];
  meta = {
    description = "Haml-like template files that are compile-time checked";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})