summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/happstack/happstack-util.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/happstack/happstack-util.nix')
-rw-r--r--pkgs/development/libraries/haskell/happstack/happstack-util.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/happstack/happstack-util.nix b/pkgs/development/libraries/haskell/happstack/happstack-util.nix
new file mode 100644
index 00000000000..4ba0854d37a
--- /dev/null
+++ b/pkgs/development/libraries/haskell/happstack/happstack-util.nix
@@ -0,0 +1,17 @@
+{cabal, mtl, hslogger, HUnit, QuickCheck, strictConcurrency,
+ unixCompat, SMTPClient}:
+
+cabal.mkDerivation (self : {
+    pname = "happstack-util";
+    version = "0.4.1";
+    sha256 = "bb254140c30c39c420bc5a649da645f59df950f0a712c2dac4de1cc6572f05f9";
+    propagatedBuildInputs = [
+      mtl hslogger HUnit QuickCheck strictConcurrency unixCompat
+      SMTPClient
+    ];
+    meta = {
+        description = "Miscellaneous utilities for Happstack packages";
+        license = "BSD";
+        maintainers = [self.stdenv.lib.maintainers.andres];
+    };
+})