Merge branch 'haskell-hoauth' of https://github.com/aforemny/nixpkgs

Add haskell-hoauth-0.3.4
This commit is contained in:
Shea Levy 2012-07-11 12:26:24 -04:00
commit 81f8f21640
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,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;
};
})

View File

@ -856,6 +856,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
hmatrix = callPackage ../development/libraries/haskell/hmatrix {};
hoauth = callPackage ../development/libraries/haskell/hoauth {};
hoogle = callPackage ../development/libraries/haskell/hoogle {};
hopenssl = callPackage ../development/libraries/haskell/hopenssl {};