blob: a3925831c6f38300644e9d689c3deda21aac5ec6 (
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.4.0.0";
src = ./.;
buildDepends = [
attoparsec base base64-bytestring byteable bytestring cereal
cryptohash deepseq either hex transformers
];
testDepends = [
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;
}
|