aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
blob: 10ee0b9b3b14a9bef49759f410a731cea0e6a042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, attoparsec, base, base64-bytestring, byteable
, bytestring, cereal, cipher-aes, cryptohash, deepseq, hex, stdenv
, tasty, tasty-hunit, tasty-quickcheck
}:
mkDerivation {
  pname = "hmacaroons";
  version = "0.1.0.0";
  src = ./.;
  buildDepends = [
    attoparsec base base64-bytestring byteable bytestring cereal
    cipher-aes cryptohash deepseq hex
  ];
  testDepends = [
    attoparsec base base64-bytestring byteable bytestring cereal
    cryptohash hex tasty tasty-hunit tasty-quickcheck
  ];
  homepage = "https://github.com/jtanguy/hmacaroons";
  description = "Haskell implementation of macaroons";
  license = stdenv.lib.licenses.bsd3;
}