summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/recaptcha/default.nix
blob: 9e2f7c8391bb4d3da4a5d4910517a722dc96616b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, HTTP, network, xhtml}:

cabal.mkDerivation (self : {
  pname = "recaptcha";
  version = "0.1";
  sha256 = "de00e6e3aadd99a1cd036ce4b413ebe02d59c1b9cfd3032f122735cca1f25144";
  propagatedBuildInputs = [HTTP network xhtml];
  meta = {
    description = "Functions for using the reCAPTCHA service in web applications";
  };
})