summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-07 22:01:16 +0000
committerPeter Simons <simons@cryp.to>2011-08-07 22:01:16 +0000
commitec1c158d754066365847a9a3fb0e9f50c0ebddbc (patch)
tree67e082b860b57a9f6640bbafab44eb251a2c838a /pkgs
parent396bbe33ff63e641b2c4a6b296aab36e27a11d01 (diff)
downloadnixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.tar
nixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.tar.gz
nixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.tar.bz2
nixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.tar.lz
nixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.tar.xz
nixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.tar.zst
nixlib-ec1c158d754066365847a9a3fb0e9f50c0ebddbc.zip
haskell-yesod-form: updated to version 0.2.0.1
svn path=/nixpkgs/trunk/; revision=28320
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/yesod-form/default.nix27
1 files changed, 15 insertions, 12 deletions
diff --git a/pkgs/development/libraries/haskell/yesod-form/default.nix b/pkgs/development/libraries/haskell/yesod-form/default.nix
index b190e8d848e1..4a423ee59b31 100644
--- a/pkgs/development/libraries/haskell/yesod-form/default.nix
+++ b/pkgs/development/libraries/haskell/yesod-form/default.nix
@@ -1,21 +1,24 @@
-{cabal, blazeBuilder, blazeHtml, dataDefault, emailValidate, hamlet,
- network, persistent, text, transformers, wai, webRoutesQuasi,
- xssSanitize, yesodCore, yesodPersistent}:
+{cabal, blazeBuilder, blazeHtml, dataDefault, emailValidate,
+ hamlet, network, persistent, text, transformers, wai,
+ webRoutesQuasi, xssSanitize, yesodCore, yesodPersistent} :
 
 cabal.mkDerivation (self : {
   pname = "yesod-form";
-  version = "0.2.0";
-  sha256 = "1dwwndrb09bqfzrarxpiw29xqvxk70iy8b2vcy0rl6g2wvrcm8an";
+  version = "0.2.0.1";
+  sha256 = "17ap5jf433s8a3k97vskvc7wxa8qdx03fynh3881zg5s1kqj3b3r";
   propagatedBuildInputs = [
-    blazeBuilder blazeHtml dataDefault emailValidate hamlet
-    network persistent text transformers wai webRoutesQuasi
-    xssSanitize yesodCore yesodPersistent
+    blazeBuilder blazeHtml dataDefault emailValidate hamlet network
+    persistent text transformers wai webRoutesQuasi xssSanitize
+    yesodCore yesodPersistent
   ];
-  noHaddock = true;
   meta = {
+    homepage = "http://www.yesodweb.com/";
     description = "Form handling support for Yesod Web Framework";
-    license = "BSD3";
-    maintainers = [self.stdenv.lib.maintainers.andres];
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.simons
+      self.stdenv.lib.maintainers.andres
+    ];
   };
 })
-