summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/haskell/blaze-html/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/blaze-html/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/blaze-html/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/blaze-html/default.nix b/pkgs/development/libraries/haskell/blaze-html/default.nix
new file mode 100644
index 000000000000..c8b2eb06a321
--- /dev/null
+++ b/pkgs/development/libraries/haskell/blaze-html/default.nix
@@ -0,0 +1,15 @@
+{ cabal, blazeBuilder, blazeMarkup, text }:
+
+cabal.mkDerivation (self: {
+ pname = "blaze-html";
+ version = "0.5.0.0";
+ sha256 = "0cfvdf50jbm6w277jf69ac57nbkgkn2ifcp6r2amd3qdbmdgqkwj";
+ buildDepends = [ blazeBuilder blazeMarkup text ];
+ meta = {
+ homepage = "http://jaspervdj.be/blaze";
+ description = "A blazingly fast HTML combinator library for Haskell";
+ license = self.stdenv.lib.licenses.bsd3;
+ platforms = self.ghc.meta.platforms;
+ maintainers = [ self.stdenv.lib.maintainers.andres ];
+ };
+})