]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - default.nix
ghc<7.10.1 compat
[github/fretlink/hmacaroons.git] / default.nix
CommitLineData
7001a61e 1{ mkDerivation, attoparsec, base, base64-bytestring, byteable
c830f7c2 2, bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck
7f9f7386 3, stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers
7001a61e
JT
4}:
5mkDerivation {
6 pname = "hmacaroons";
a11f20be 7 version = "0.4.0.0";
7001a61e
JT
8 src = ./.;
9 buildDepends = [
10 attoparsec base base64-bytestring byteable bytestring cereal
7f9f7386 11 cryptohash deepseq either hex transformers
7001a61e
JT
12 ];
13 testDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal
a11f20be
JT
15 cryptohash deepseq either hex QuickCheck tasty tasty-hunit
16 tasty-quickcheck transformers
7001a61e
JT
17 ];
18 homepage = "https://github.com/jtanguy/hmacaroons";
19 description = "Haskell implementation of macaroons";
20 license = stdenv.lib.licenses.bsd3;
21}