Skip to content

Commit

Permalink
Merge 2f191d2 into 39428bb
Browse files Browse the repository at this point in the history
  • Loading branch information
Artyom committed May 19, 2016
2 parents 39428bb + 2f191d2 commit 490ec3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bitcoin-tx.cabal
Expand Up @@ -33,7 +33,7 @@ library
, bytestring
, binary
, hexstring
, lens
, microlens-th

, cryptohash

Expand Down
4 changes: 2 additions & 2 deletions bitcoin-tx.nix
@@ -1,13 +1,13 @@
{ mkDerivation, base, binary, bitcoin-script, bitcoin-types
, bytestring, cryptohash, hexstring, hspec, lens, stdenv
, bytestring, cryptohash, hexstring, hspec, microlens-th, stdenv
}:
mkDerivation {
pname = "bitcoin-tx";
version = "0.13.1";
src = ./.;
buildDepends = [
base binary bitcoin-script bitcoin-types bytestring cryptohash
hexstring lens
hexstring microlens-th
];
testDepends = [ base bitcoin-script bytestring hexstring hspec ];
homepage = "http://www.leonmergen.com/opensource.html";
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Bitcoin/Transaction/Types.hs
Expand Up @@ -4,7 +4,7 @@
module Data.Bitcoin.Transaction.Types where

import Control.Applicative ((<$>), (<*>))
import Control.Lens.TH (makeLenses)
import Lens.Micro.TH (makeLenses)
import Control.Monad (forM_, liftM2, replicateM, unless)

import Data.Word (Word32, Word64)
Expand Down

0 comments on commit 490ec3e

Please sign in to comment.