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

cabal.mkDerivation (self: {
  pname = "hoauth";
  version = "0.3.4";
  sha256 = "0a8a77smzhxmynfi0ayvsgibpw9aav2f7pi9j3dxjas14zg9qv2k";
  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;
  };
})