Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add haskell-hoauth-0.3.4 #41

Merged
merged 1 commit into from
Jul 11, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions pkgs/development/libraries/haskell/hoauth/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
})
2 changes: 2 additions & 0 deletions pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down