summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix')
-rw-r--r--pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix b/pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix
new file mode 100644
index 000000000000..3eccba4eb381
--- /dev/null
+++ b/pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix
@@ -0,0 +1,18 @@
+{ cabal, hamlet, happstackServer, text }:
+
+cabal.mkDerivation (self: {
+  pname = "happstack-hamlet";
+  version = "6.2.0";
+  sha256 = "1y3nc6z9y96fci25dc6w66l0qlnkz29kr29dpd2sjnhpqm0kvzsc";
+  buildDepends = [ hamlet happstackServer text ];
+  meta = {
+    homepage = "http://www.happstack.com/";
+    description = "Support for Hamlet HTML templates in Happstack";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})