aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/default.nix b/default.nix
index 10ee0b9..b9cfdb7 100644
--- a/default.nix
+++ b/default.nix
@@ -1,6 +1,6 @@
1{ mkDerivation, attoparsec, base, base64-bytestring, byteable 1{ mkDerivation, attoparsec, base, base64-bytestring, byteable
2, bytestring, cereal, cipher-aes, cryptohash, deepseq, hex, stdenv 2, bytestring, cereal, cipher-aes, cryptohash, deepseq, hex
3, tasty, tasty-hunit, tasty-quickcheck 3, QuickCheck, stdenv, tasty, tasty-hunit, tasty-quickcheck
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "hmacaroons"; 6 pname = "hmacaroons";
@@ -12,7 +12,7 @@ mkDerivation {
12 ]; 12 ];
13 testDepends = [ 13 testDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal 14 attoparsec base base64-bytestring byteable bytestring cereal
15 cryptohash hex tasty tasty-hunit tasty-quickcheck 15 cryptohash hex QuickCheck tasty tasty-hunit tasty-quickcheck
16 ]; 16 ];
17 homepage = "https://github.com/jtanguy/hmacaroons"; 17 homepage = "https://github.com/jtanguy/hmacaroons";
18 description = "Haskell implementation of macaroons"; 18 description = "Haskell implementation of macaroons";