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