]>
Commit | Line | Data |
---|---|---|
1 | { mkDerivation, attoparsec, base, base64-bytestring, byteable | |
2 | , bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck | |
3 | , stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers | |
4 | }: | |
5 | mkDerivation { | |
6 | pname = "hmacaroons"; | |
7 | version = "0.4.0.0"; | |
8 | src = ./.; | |
9 | buildDepends = [ | |
10 | attoparsec base base64-bytestring byteable bytestring cereal | |
11 | cryptohash deepseq either hex transformers | |
12 | ]; | |
13 | testDepends = [ | |
14 | attoparsec base base64-bytestring byteable bytestring cereal | |
15 | cryptohash deepseq either hex QuickCheck tasty tasty-hunit | |
16 | tasty-quickcheck transformers | |
17 | ]; | |
18 | homepage = "https://github.com/jtanguy/hmacaroons"; | |
19 | description = "Haskell implementation of macaroons"; | |
20 | license = stdenv.lib.licenses.bsd3; | |
21 | } |