mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:44:50 +00:00
23 lines
782 B
Nix
23 lines
782 B
Nix
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, failure, hspec
|
|
, HUnit, parsec, shakespeare, systemFileio, systemFilepath, text
|
|
, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hamlet";
|
|
version = "1.1.8";
|
|
sha256 = "093igcaycg2d29ncj9l8qbzi21drynjk8kvqfl70zqvgsm8nai7x";
|
|
buildDepends = [
|
|
blazeBuilder blazeHtml blazeMarkup failure parsec shakespeare
|
|
systemFileio systemFilepath text time
|
|
];
|
|
testDepends = [ blazeHtml blazeMarkup hspec HUnit parsec 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 ];
|
|
};
|
|
})
|