mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
23 lines
784 B
Nix
23 lines
784 B
Nix
{ cabal, blazeBuilder, blazeHtml, blazeMarkup, failure, hspec
|
|
, HUnit, parsec, shakespeare, systemFileio, systemFilepath, text
|
|
, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hamlet";
|
|
version = "1.1.9.2";
|
|
sha256 = "122wfkk23a2bvz29hrgxj24k6cf315fwdbz70ih3nclawh0bhani";
|
|
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 ];
|
|
};
|
|
})
|