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.nix20
1 files changed, 12 insertions, 8 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-server.nix b/pkgs/development/libraries/haskell/happstack/happstack-server.nix
index eb8e037a9e225..2461bb1eaa96f 100644
--- a/pkgs/development/libraries/haskell/happstack/happstack-server.nix
+++ b/pkgs/development/libraries/haskell/happstack/happstack-server.nix
@@ -1,14 +1,18 @@
-{cabal, MaybeT, blazeHtml, happstackData, happstackUtil, hslogger,
- html, mtl, network, parsec, sendfile, syb, text, utf8String, xhtml,
- zlib} :
+{ cabal, MaybeT, blazeHtml, extensibleExceptions, happstackData
+, happstackUtil, hslogger, html, mtl, network, parsec, sendfile
+, syb, text, time, utf8String, xhtml, zlib
+}:
 
-cabal.mkDerivation (self : {
+cabal.mkDerivation (self: {
   pname = "happstack-server";
   version = "6.1.6";
   sha256 = "1z4c2bymyyvhs47ynrlp4d2cwqws2d2isiwj82c33qcmk4znargg";
-  propagatedBuildInputs = [
-    MaybeT blazeHtml happstackData happstackUtil hslogger html mtl
-    network parsec sendfile syb text utf8String xhtml zlib
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [
+    MaybeT blazeHtml extensibleExceptions happstackData happstackUtil
+    hslogger html mtl network parsec sendfile syb text time utf8String
+    xhtml zlib
   ];
   meta = {
     homepage = "http://happstack.com";
@@ -16,8 +20,8 @@ cabal.mkDerivation (self : {
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
     maintainers = [
-      self.stdenv.lib.maintainers.simons
       self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
     ];
   };
 })