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