summary refs log tree commit diff
path: root/pkgs/tools/misc/libbitcoin/libbitcoin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/libbitcoin/libbitcoin.nix')
-rw-r--r--pkgs/tools/misc/libbitcoin/libbitcoin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/libbitcoin/libbitcoin.nix b/pkgs/tools/misc/libbitcoin/libbitcoin.nix
index e68635585d0..5198676cb75 100644
--- a/pkgs/tools/misc/libbitcoin/libbitcoin.nix
+++ b/pkgs/tools/misc/libbitcoin/libbitcoin.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
+{ lib, stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
 , boost, secp256k1 }:
 
 let
@@ -27,7 +27,7 @@ in stdenv.mkDerivation {
     "--with-boost-libdir=${boost.out}/lib"
   ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "C++ library for building bitcoin applications";
     homepage = "https://libbitcoin.org/";
     platforms = platforms.linux ++ platforms.darwin;