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

cabal.mkDerivation (self: {
  pname = "hamlet";
  version = "0.8.2.1";
  sha256 = "0798ic6qap4npw2rx42xcgmi1fcbwqvyic5x6vyyf6abvxv16925";
  buildDepends = [ blazeBuilder blazeHtml failure parsec text ];
  meta = {
    homepage = "http://www.yesodweb.com/";
    description = "Haml-like template files that are compile-time checked";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})