summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hoauth/default.nix
blob: c568b292c3c1d323de7923b095ff5877f2b11686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, binary, cryptoPubkeyTypes, curl, dataenc, entropy, mtl
, random, RSA, SHA, time, utf8String
}:

cabal.mkDerivation (self: {
  pname = "hoauth";
  version = "0.3.5";
  sha256 = "06vk3dv2dby7wadxg4qq2bzy10hl8ix2x4vpxggwd13xy3kpzjqp";
  buildDepends = [
    binary cryptoPubkeyTypes curl dataenc entropy mtl random RSA SHA
    time utf8String
  ];
  meta = {
    description = "A Haskell implementation of OAuth 1.0a protocol.";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})