about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-29 20:27:47 +0000
committerPeter Simons <simons@cryp.to>2011-08-29 20:27:47 +0000
commit9c0c9b9ba4b5faca50ca53ee34c63725763dd540 (patch)
treed0f9c3e8426386a6c8697c0319f51bd65c604625 /pkgs
parent42a21dc8d623bc2003b57cb689a33765fae40084 (diff)
haskell-wai-app-static: updated to version 0.3.3
svn path=/nixpkgs/trunk/; revision=28894
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/wai-app-static/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/haskell/wai-app-static/default.nix b/pkgs/development/libraries/haskell/wai-app-static/default.nix
index 79513b785d4a2..3fa0595bc13c3 100644
--- a/pkgs/development/libraries/haskell/wai-app-static/default.nix
+++ b/pkgs/development/libraries/haskell/wai-app-static/default.nix
@@ -1,17 +1,18 @@
-{ cabal, blazeBuilder, blazeHtml, fileEmbed, httpTypes, text, time
-, transformers, unixCompat, wai
+{ cabal, base64Bytestring, blazeBuilder, blazeHtml, cryptohash
+, fileEmbed, httpDate, httpTypes, text, time, transformers
+, unixCompat, wai
 }:
 
 cabal.mkDerivation (self: {
   pname = "wai-app-static";
-  version = "0.1.0";
-  sha256 = "0k9pl1kanrb2pqp1bs5s1lxb7ayq2ddf2cxi5q2v9yq22s229xln";
+  version = "0.3.3";
+  sha256 = "04b4cw93agw136xjh9rssiw96vz3kxji7zh209brwfnwh13bra17";
   buildDepends = [
-    blazeBuilder blazeHtml fileEmbed httpTypes text time transformers
-    unixCompat wai
+    base64Bytestring blazeBuilder blazeHtml cryptohash fileEmbed
+    httpDate httpTypes text time transformers unixCompat wai
   ];
   meta = {
-    homepage = "http://www.yesodweb.com/";
+    homepage = "http://www.yesodweb.com/book/wai";
     description = "WAI application for static serving";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;