X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=default.nix;h=b1404efc9a30246933a65c36f8f3a1d965500066;hb=86f3882318d323d1920ca1c7da6e816f0ed376da;hp=b9cfdb7c2ffc8eaf15799bc092b114e349c0ba1b;hpb=d41449d7b93adcfd7ffd5c21c355d9ed381cf3ff;p=github%2Ffretlink%2Fhmacaroons.git diff --git a/default.nix b/default.nix index b9cfdb7..b1404ef 100644 --- a/default.nix +++ b/default.nix @@ -1,18 +1,18 @@ { mkDerivation, attoparsec, base, base64-bytestring, byteable -, bytestring, cereal, cipher-aes, cryptohash, deepseq, hex -, QuickCheck, stdenv, tasty, tasty-hunit, tasty-quickcheck +, bytestring, cereal, cryptohash, deepseq, either, hex, QuickCheck +, stdenv, tasty, tasty-hunit, tasty-quickcheck, transformers }: mkDerivation { pname = "hmacaroons"; - version = "0.1.0.0"; + version = "0.2.0.0"; src = ./.; buildDepends = [ attoparsec base base64-bytestring byteable bytestring cereal - cipher-aes cryptohash deepseq hex + cryptohash deepseq either hex transformers ]; testDepends = [ attoparsec base base64-bytestring byteable bytestring cereal - cryptohash hex QuickCheck tasty tasty-hunit tasty-quickcheck + cryptohash either hex QuickCheck tasty tasty-hunit tasty-quickcheck ]; homepage = "https://github.com/jtanguy/hmacaroons"; description = "Haskell implementation of macaroons";