summary refs log tree commit diff
path: root/pkgs/development/libraries/msgpuck
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/msgpuck')
-rw-r--r--pkgs/development/libraries/msgpuck/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/msgpuck/default.nix b/pkgs/development/libraries/msgpuck/default.nix
index 0411a8bf623..e65b7453dc3 100644
--- a/pkgs/development/libraries/msgpuck/default.nix
+++ b/pkgs/development/libraries/msgpuck/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, pkg-config }:
+{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
 
 stdenv.mkDerivation rec {
   pname = "msgpuck";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake pkg-config ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
      description = ''A simple and efficient MsgPack binary serialization library in a self-contained header file'';
      homepage = "https://github.com/rtsisyk/msgpuck";
      license = licenses.bsd2;