aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
diff options
context:
space:
mode:
authorJulien Tanguy <julien.tanguy@jhome.fr>2015-08-16 23:22:10 +0200
committerJulien Tanguy <julien.tanguy@jhome.fr>2015-08-16 23:22:10 +0200
commit7f9f7386fdbe8d19ef30ebd20939e67cc8bb145c (patch)
treeea8eea3c4e8c35db822b46e502049fc81e891aa3 /default.nix
parentc830f7c2cf925ce340f4097d76ea2a3bc94cb4a6 (diff)
downloadhmacaroons-7f9f7386fdbe8d19ef30ebd20939e67cc8bb145c.tar.gz
hmacaroons-7f9f7386fdbe8d19ef30ebd20939e67cc8bb145c.tar.zst
hmacaroons-7f9f7386fdbe8d19ef30ebd20939e67cc8bb145c.zip
Basic validation functions
Still needs testing [ci skip]
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 bd725a9..b1404ef 100644
--- a/default.nix
+++ b/default.nix
@@ -1,14 +1,14 @@
1{ mkDerivation, attoparsec, base, base64-bytestring, byteable 1{ mkDerivation, attoparsec, base, base64-bytestring, byteable
2, bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck 2, bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck
3, stdenv, tasty, tasty-hunit, tasty-quickcheck 3, stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers
4}: 4}:
5mkDerivation { 5mkDerivation {
6 pname = "hmacaroons"; 6 pname = "hmacaroons";
7 version = "0.1.0.0"; 7 version = "0.2.0.0";
8 src = ./.; 8 src = ./.;
9 buildDepends = [ 9 buildDepends = [
10 attoparsec base base64-bytestring byteable bytestring cereal 10 attoparsec base base64-bytestring byteable bytestring cereal
11 cryptohash deepseq either hex 11 cryptohash deepseq either hex transformers
12 ]; 12 ];
13 testDepends = [ 13 testDepends = [
14 attoparsec base base64-bytestring byteable bytestring cereal 14 attoparsec base base64-bytestring byteable bytestring cereal