From f52d0d163435dff8abe84a1c5c7ae3cc82b9f983 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 19 Jan 2012 14:46:04 +0000 Subject: [PATCH] haskell-web-routes: updated to version 0.26.2 svn path=/nixpkgs/trunk/; revision=31696 --- .../libraries/haskell/web-routes/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/web-routes/default.nix b/pkgs/development/libraries/haskell/web-routes/default.nix index 84ba6ed7fc6..a6ac919ba71 100644 --- a/pkgs/development/libraries/haskell/web-routes/default.nix +++ b/pkgs/development/libraries/haskell/web-routes/default.nix @@ -1,10 +1,14 @@ -{ cabal, mtl, network, parsec, utf8String }: +{ cabal, blazeBuilder, httpTypes, mtl, network, parsec, text +, utf8String +}: cabal.mkDerivation (self: { pname = "web-routes"; - version = "0.25.3"; - sha256 = "09bqz7vn2050jr67m3rrqi0krfxa9n1fxm9rgi3c837g522nb4kk"; - buildDepends = [ mtl network parsec utf8String ]; + version = "0.26.2"; + sha256 = "0v7vkd53jf9zf2m0lbiq10qp39ghlnxwafs1hixbz2qfcgsns10j"; + buildDepends = [ + blazeBuilder httpTypes mtl network parsec text utf8String + ]; meta = { description = "Library for maintaining correctness and composability of URLs within an application"; license = self.stdenv.lib.licenses.bsd3;