summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/happstack/happstack-server.nix')
-rw-r--r--pkgs/development/libraries/haskell/happstack/happstack-server.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-server.nix b/pkgs/development/libraries/haskell/happstack/happstack-server.nix
new file mode 100644
index 0000000000000..c1d66c0fabcdb
--- /dev/null
+++ b/pkgs/development/libraries/haskell/happstack/happstack-server.nix
@@ -0,0 +1,16 @@
+{cabal, HUnit, HaXml, MaybeT, parsec, sendfile, utf8String, mtl, network, hslogger, happstackData, happstackUtil, xhtml, html, zlib}:
+
+cabal.mkDerivation (self : {
+    pname = "happstack-server";
+    version = "0.4.1";
+    sha256 = "2a5d32b4e635160ffab8a90891d9c5ca0433969944ae4013ec8cebe25ba63658";
+    propagatedBuildInputs = [
+      HUnit HaXml MaybeT happstackData happstackUtil hslogger html
+      mtl network parsec sendfile utf8String xhtml zlib
+    ];
+    meta = {
+        description = "Web related tools and services";
+        license = "BSD";
+        maintainers = [self.stdenv.lib.maintainers.andres];
+    };
+})