forked from mirrors/nixpkgs
dec4675e86
- cpu: added version 0.1.0 - cryptocipher: updated to version 0.3.1 - fclabels: updated to version 1.1.3 - hamlet: updated to version 1.0.1.2 - highlighting-kate: updated to version 0.5.0.6 - lifted-base: updated to version 0.1.1 - monad-control: updated to version 0.3.1.3 - reactive-banana: updated to version 0.5.0.2 - test-framework-quickcheck2: updated to version 0.2.12.2 - test-framework-quickcheck: updated to version 0.2.8.1 svn path=/nixpkgs/trunk/; revision=33969
20 lines
604 B
Nix
20 lines
604 B
Nix
{ cabal, blazeBuilder, blazeHtml, failure, parsec, shakespeare
|
|
, text
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hamlet";
|
|
version = "1.0.1.2";
|
|
sha256 = "1lb1q2nkih7z63gh1rdwl4656ybmpdqic1d09q5jqgm6bjqrgw53";
|
|
buildDepends = [
|
|
blazeBuilder blazeHtml failure parsec shakespeare text
|
|
];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
|
description = "Haml-like template files that are compile-time checked";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|