]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - default.nix
Add maintenance status badge
[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";
be278da9 7 version = "0.5.0.0";
7001a61e 8 src = ./.;
be278da9 9 libraryHaskellDepends = [
7001a61e 10 attoparsec base base64-bytestring byteable bytestring cereal
7f9f7386 11 cryptohash deepseq either hex transformers
7001a61e 12 ];
be278da9 13 testHaskellDepends = [
7001a61e 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}