]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - default.nix
Fix haddock and add changelog
[github/fretlink/hmacaroons.git] / default.nix
CommitLineData
7001a61e 1{ mkDerivation, attoparsec, base, base64-bytestring, byteable
d41449d7
JT
2, bytestring, cereal, cipher-aes, cryptohash, deepseq, hex
3, QuickCheck, stdenv, 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
11 cipher-aes cryptohash deepseq hex
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}