From 6b2839c3611643f6bf62a1b520272a31e84b4c2f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 29 Aug 2011 20:28:27 +0000 Subject: [PATCH] haskell-yesod-static: updated to version 0.3.0.1 svn path=/nixpkgs/trunk/; revision=28901 --- .../libraries/haskell/yesod-static/default.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/haskell/yesod-static/default.nix b/pkgs/development/libraries/haskell/yesod-static/default.nix index 281f14c862c..8fbc8baff49 100644 --- a/pkgs/development/libraries/haskell/yesod-static/default.nix +++ b/pkgs/development/libraries/haskell/yesod-static/default.nix @@ -1,16 +1,14 @@ -{ cabal, base64Bytestring, cereal, pureMD5, text, transformers -, waiAppStatic, yesodCore +{ cabal, base64Bytestring, cereal, fileEmbed, httpTypes, pureMD5 +, text, transformers, unixCompat, wai, waiAppStatic, yesodCore }: cabal.mkDerivation (self: { pname = "yesod-static"; - version = "0.1.0.1"; - sha256 = "0icb1wp0ndvl54shjyv0apmias60j2gjbcv7i92dxnl3fzx74d3p"; - isLibrary = true; - isExecutable = true; + version = "0.3.0.1"; + sha256 = "1dvg60kawmvczwxvkxzx5k19y36i23fi0faw71ck58mlkjdczby5"; buildDepends = [ - base64Bytestring cereal pureMD5 text transformers waiAppStatic - yesodCore + base64Bytestring cereal fileEmbed httpTypes pureMD5 text + transformers unixCompat wai waiAppStatic yesodCore ]; meta = { homepage = "http://www.yesodweb.com/";