summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/avro-c++
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-22 00:00:13 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-21 19:11:02 -0800
commit66e44425c6dfecbea68a5d6dc221ccd56561d4f1 (patch)
tree0a5bf7d41356ad47b4e6f0a737bf16c9a4a5b01e /pkgs/development/libraries/avro-c++
parent046d24424ef32cca1227519f93f41b5ec8133f31 (diff)
pkgs/development/libraries: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/libraries/avro-c++')
-rw-r--r--pkgs/development/libraries/avro-c++/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/avro-c++/default.nix b/pkgs/development/libraries/avro-c++/default.nix
index 9ac609f1679c..15e2516c1b6b 100644
--- a/pkgs/development/libraries/avro-c++/default.nix
+++ b/pkgs/development/libraries/avro-c++/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, boost, python2}:
+{ lib, stdenv, fetchurl, cmake, boost, python2}:
let version = "1.8.2"; in
@@ -22,8 +22,8 @@ stdenv.mkDerivation {
meta = {
description = "A C++ library which implements parts of the Avro Specification";
homepage = "https://avro.apache.org/";
- license = stdenv.lib.licenses.asl20;
- maintainers = with stdenv.lib.maintainers; [ rasendubi ];
- platforms = stdenv.lib.platforms.all;
+ license = lib.licenses.asl20;
+ maintainers = with lib.maintainers; [ rasendubi ];
+ platforms = lib.platforms.all;
};
}