]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - default.nix
Add maintenance status badge
[github/fretlink/hmacaroons.git] / default.nix
1 { mkDerivation, attoparsec, base, base64-bytestring, byteable
2 , bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck
3 , stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers
4 }:
5 mkDerivation {
6 pname = "hmacaroons";
7 version = "0.5.0.0";
8 src = ./.;
9 libraryHaskellDepends = [
10 attoparsec base base64-bytestring byteable bytestring cereal
11 cryptohash deepseq either hex transformers
12 ];
13 testHaskellDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal
15 cryptohash deepseq either hex QuickCheck tasty tasty-hunit
16 tasty-quickcheck transformers
17 ];
18 homepage = "https://github.com/jtanguy/hmacaroons";
19 description = "Haskell implementation of macaroons";
20 license = stdenv.lib.licenses.bsd3;
21 }