about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/authenticate
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2011-08-07 22:51:22 +0000
committerAndres Löh <mail@andres-loeh.de>2011-08-07 22:51:22 +0000
commitfd258d6fe10547f8258b1610c3efed410aae0f37 (patch)
treea69dddc33fa01bc26904052a88943b3ae7766e65 /pkgs/development/libraries/haskell/authenticate
parent75dfd9d3c6a399be63f4747ff3b8df94aa1508f4 (diff)
Added complete yesod.
Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
Diffstat (limited to 'pkgs/development/libraries/haskell/authenticate')
-rw-r--r--pkgs/development/libraries/haskell/authenticate/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/authenticate/default.nix b/pkgs/development/libraries/haskell/authenticate/default.nix
new file mode 100644
index 0000000000000..331d2584c5978
--- /dev/null
+++ b/pkgs/development/libraries/haskell/authenticate/default.nix
@@ -0,0 +1,22 @@
+{cabal, RSA, SHA, aeson, attoparsec, base64Bytestring,
+ blazeBuilder, caseInsensitive, enumerator, failure, httpEnumerator,
+ httpTypes, network, tagsoup, text, tls, transformers,
+ xmlEnumerator} :
+
+cabal.mkDerivation (self : {
+  pname = "authenticate";
+  version = "0.9.2.2";
+  sha256 = "0rn1f458ag9mmh55hi873xg5iqypwl6vf6blyaxwbgbp6nm327iz";
+  propagatedBuildInputs = [
+    RSA SHA aeson attoparsec base64Bytestring blazeBuilder
+    caseInsensitive enumerator failure httpEnumerator httpTypes network
+    tagsoup text tls transformers xmlEnumerator
+  ];
+  meta = {
+    homepage = "http://github.com/snoyberg/authenticate/tree/master";
+    description = "Authentication methods for Haskell web applications.";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
+  };
+})