Description: use mkLE instead of LE
Author: Joachim Breitner <nomeata@debian.org>
Bug: https://github.com/vincenthz/cryptonite/issues/31

--- haskell-cryptonite-0.6.orig/Crypto/Cipher/ChaChaPoly1305.hs
+++ haskell-cryptonite-0.6/Crypto/Cipher/ChaChaPoly1305.hs
@@ -108,5 +108,5 @@ finalize :: State -> Poly1305.Auth
 finalize (State _ macState aadLength plainLength) =
     Poly1305.finalize $ Poly1305.updates macState
         [ pad16 plainLength
-        , either (error "finalize: internal error") id $ P.fill 16 (P.putStorable (LE aadLength) >> P.putStorable (LE plainLength))
+        , either (error "finalize: internal error") id $ P.fill 16 (P.putStorable (toLE aadLength) >> P.putStorable (toLE plainLength))
         ]
