blob: bcaf9748377fab00235c86ec3d59d9fb28268b6a (
plain) (
tree)
|
|
{ mkDerivation, attoparsec, base, base64-bytestring, byteable
, bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck
, stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers
}:
mkDerivation {
pname = "hmacaroons";
version = "0.5.0.0";
src = ./.;
libraryHaskellDepends = [
attoparsec base base64-bytestring byteable bytestring cereal
cryptohash deepseq either hex transformers
];
testHaskellDepends = [
attoparsec base base64-bytestring byteable bytestring cereal
cryptohash deepseq either hex QuickCheck tasty tasty-hunit
tasty-quickcheck transformers
];
homepage = "https://github.com/jtanguy/hmacaroons";
description = "Haskell implementation of macaroons";
license = stdenv.lib.licenses.bsd3;
}
|