]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - default.nix
Nixify package & documentation
[github/fretlink/hmacaroons.git] / default.nix
1 { mkDerivation, attoparsec, base, base64-bytestring, byteable
2 , bytestring, cereal, cipher-aes, cryptohash, deepseq, hex, 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 cipher-aes cryptohash deepseq hex
12 ];
13 testDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal
15 cryptohash hex 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 }