]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - default.nix
Add newlines between Caveats in Macaroon's show
[github/fretlink/hmacaroons.git] / default.nix
CommitLineData
7001a61e 1{ mkDerivation, attoparsec, base, base64-bytestring, byteable
8505c3d3
JT
2, bytestring, cereal, cryptohash, deepseq, hex, QuickCheck, stdenv
3, tasty, tasty-hunit, tasty-quickcheck
7001a61e
JT
4}:
5mkDerivation {
6 pname = "hmacaroons";
7 version = "0.1.0.0";
8 src = ./.;
9 buildDepends = [
10 attoparsec base base64-bytestring byteable bytestring cereal
8505c3d3 11 cryptohash deepseq hex
7001a61e
JT
12 ];
13 testDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal
d41449d7 15 cryptohash 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}