aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
blob: b1404efc9a30246933a65c36f8f3a1d965500066 (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, cryptohash, deepseq, either, hex, QuickCheck
, stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers
}:
mkDerivation {
  pname = "hmacaroons";
  version = "0.2.0.0";
  src = ./.;
  buildDepends = [
    attoparsec base base64-bytestring byteable bytestring cereal
    cryptohash deepseq either hex transformers
  ];
  testDepends = [
    attoparsec base base64-bytestring byteable bytestring cereal
    cryptohash either hex QuickCheck tasty tasty-hunit tasty-quickcheck
  ];
  homepage = "https://github.com/jtanguy/hmacaroons";
  description = "Haskell implementation of macaroons";
  license = stdenv.lib.licenses.bsd3;
}