summaryrefslogtreecommitdiff
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.nix37
1 files changed, 24 insertions, 13 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-server.nix b/pkgs/development/libraries/haskell/happstack/happstack-server.nix
index 377e725dd59f..4d8e874a8bf5 100644
--- a/pkgs/development/libraries/haskell/happstack/happstack-server.nix
+++ b/pkgs/development/libraries/haskell/happstack/happstack-server.nix
@@ -1,16 +1,27 @@
-{cabal, HUnit, HaXml, MaybeT, parsec, sendfile, utf8String, mtl, network, hslogger, happstackData, happstackUtil, xhtml, html, zlib}:
+{ cabal, blazeHtml, extensibleExceptions, happstackData
+, happstackUtil, hslogger, html, MaybeT, mtl, network, parsec
+, sendfile, syb, text, time, utf8String, xhtml, zlib
+}:
-cabal.mkDerivation (self : {
- pname = "happstack-server";
- version = "0.5.0.4";
- sha256 = "1iyjrlg5x6rlx8bfhn62a0ckjap0zv22hb6yazqph53jx6vn9b7q";
- propagatedBuildInputs = [
- HUnit HaXml MaybeT happstackData happstackUtil hslogger html
- mtl network parsec sendfile utf8String xhtml zlib
+cabal.mkDerivation (self: {
+ pname = "happstack-server";
+ version = "6.1.6";
+ sha256 = "1z4c2bymyyvhs47ynrlp4d2cwqws2d2isiwj82c33qcmk4znargg";
+ isLibrary = true;
+ isExecutable = true;
+ buildDepends = [
+ blazeHtml extensibleExceptions happstackData happstackUtil hslogger
+ html MaybeT mtl network parsec sendfile syb text time utf8String
+ xhtml zlib
+ ];
+ meta = {
+ homepage = "http://happstack.com";
+ description = "Web related tools and services";
+ license = self.stdenv.lib.licenses.bsd3;
+ platforms = self.ghc.meta.platforms;
+ maintainers = [
+ self.stdenv.lib.maintainers.andres
+ self.stdenv.lib.maintainers.simons
];
- meta = {
- description = "Web related tools and services";
- license = "BSD";
- maintainers = [self.stdenv.lib.maintainers.andres];
- };
+ };
})