summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-12-10 12:43:41 +0100
committerPeter Simons <simons@cryp.to>2012-12-10 12:43:49 +0100
commit780e808177dde896111ba3fe6e480b8532c29475 (patch)
tree33119daf368195fd8347bd14c7409fa02de76ed0 /pkgs
parent2b057f50d26153735da4936ca1e7d2f7f202d6a3 (diff)
downloadnixlib-780e808177dde896111ba3fe6e480b8532c29475.tar
nixlib-780e808177dde896111ba3fe6e480b8532c29475.tar.gz
nixlib-780e808177dde896111ba3fe6e480b8532c29475.tar.bz2
nixlib-780e808177dde896111ba3fe6e480b8532c29475.tar.lz
nixlib-780e808177dde896111ba3fe6e480b8532c29475.tar.xz
nixlib-780e808177dde896111ba3fe6e480b8532c29475.tar.zst
nixlib-780e808177dde896111ba3fe6e480b8532c29475.zip
haskell-snap: update to version 0.10.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/snap/snap.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/pkgs/development/libraries/haskell/snap/snap.nix b/pkgs/development/libraries/haskell/snap/snap.nix
index 1676de1e8404..0911893c81bf 100644
--- a/pkgs/development/libraries/haskell/snap/snap.nix
+++ b/pkgs/development/libraries/haskell/snap/snap.nix
@@ -1,23 +1,23 @@
-{ cabal, aeson, attoparsec, cereal, clientsession, configurator
-, dataLens, dataLensTemplate, directoryTree, filepath, hashable
-, heist, logict, MonadCatchIOTransformers, mtl, mwcRandom
-, pwstoreFast, snapCore, snapServer, stm, syb, text, time
-, transformers, unorderedContainers, vector, vectorAlgorithms
+{ cabal, aeson, attoparsec, cereal, clientsession, comonad
+, configurator, directoryTree, dlist, errors, filepath, hashable
+, heist, lens, logict, MonadCatchIOTransformers, mtl, mwcRandom
+, pwstoreFast, regexPosix, snapCore, snapServer, stm, syb, text
+, time, transformers, unorderedContainers, vector, vectorAlgorithms
 , xmlhtml
 }:
 
 cabal.mkDerivation (self: {
   pname = "snap";
-  version = "0.9.2.2";
-  sha256 = "1ql9c8b9arcd8zwlwsiipl4diah87sp339ljc5bc7yls1g4d9zsw";
+  version = "0.10.0";
+  sha256 = "1nr9izh8p2jwhp2qcqhh1v2z01y5rhsx458b202hk3iqhrd9n6l8";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    aeson attoparsec cereal clientsession configurator dataLens
-    dataLensTemplate directoryTree filepath hashable heist logict
-    MonadCatchIOTransformers mtl mwcRandom pwstoreFast snapCore
-    snapServer stm syb text time transformers unorderedContainers
-    vector vectorAlgorithms xmlhtml
+    aeson attoparsec cereal clientsession comonad configurator
+    directoryTree dlist errors filepath hashable heist lens logict
+    MonadCatchIOTransformers mtl mwcRandom pwstoreFast regexPosix
+    snapCore snapServer stm syb text time transformers
+    unorderedContainers vector vectorAlgorithms xmlhtml
   ];
   meta = {
     homepage = "http://snapframework.com/";