summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hastache/default.nix
blob: 54decaa5ecb8a19752156341edc7a4481e3e1385 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, blazeBuilder, filepath, ieee754, mtl, syb, text
, utf8String
}:

cabal.mkDerivation (self: {
  pname = "hastache";
  version = "0.4.1";
  sha256 = "1d6d3bmmfx1jh38hhmvaq1ncdxlfjc0mc7jvbxqgr00dg73wfgdk";
  buildDepends = [
    blazeBuilder filepath ieee754 mtl syb text utf8String
  ];
  meta = {
    homepage = "http://github.com/lymar/hastache";
    description = "Haskell implementation of Mustache templates";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})