]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - default.nix
Change verifier api and split Verifier module
[github/fretlink/hmacaroons.git] / default.nix
CommitLineData
7001a61e 1{ mkDerivation, attoparsec, base, base64-bytestring, byteable
c830f7c2 2, bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck
7f9f7386 3, stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers
7001a61e
JT
4}:
5mkDerivation {
6 pname = "hmacaroons";
7f9f7386 7 version = "0.2.0.0";
7001a61e
JT
8 src = ./.;
9 buildDepends = [
10 attoparsec base base64-bytestring byteable bytestring cereal
7f9f7386 11 cryptohash deepseq either hex transformers
7001a61e
JT
12 ];
13 testDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal
c830f7c2 15 cryptohash either hex QuickCheck tasty tasty-hunit tasty-quickcheck
7001a61e
JT
16 ];
17 homepage = "https://github.com/jtanguy/hmacaroons";
18 description = "Haskell implementation of macaroons";
19 license = stdenv.lib.licenses.bsd3;
20}