nixpkgs/pkgs/development/libraries/haskell/hamlet/default.nix
Andres Löh 5422838e56 Version bumps for hakyll and dependencies.
svn path=/nixpkgs/trunk/; revision=27638
2011-07-07 19:08:51 +00:00

15 lines
445 B
Nix

{cabal, blazeBuilder, blazeHtml, failure, parsec, text}:
cabal.mkDerivation (self : {
pname = "hamlet";
version = "0.8.2.1";
sha256 = "0798ic6qap4npw2rx42xcgmi1fcbwqvyic5x6vyyf6abvxv16925";
propagatedBuildInputs =
[blazeBuilder blazeHtml failure parsec text];
meta = {
description = "Haml-like template files that are compile-time checked";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})