mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Add haskell-hoauth-0.3.4
This commit is contained in:
parent
cfb08fc600
commit
0b71387b76
2 changed files with 20 additions and 0 deletions
18
pkgs/development/libraries/haskell/hoauth/default.nix
Normal file
18
pkgs/development/libraries/haskell/hoauth/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue