about summary refs log tree commit diff
path: root/pkgs/development/libraries/libgbinder
diff options
context:
space:
mode:
authorMihai-Drosi Câju <cajum.bugs@yandex.com>2023-09-24 16:06:12 +0300
committerEmery Hemingway <ehmry@posteo.net>2023-11-26 17:13:15 +0200
commitd2fc0cbaa40804366e69cd8da5527f66f67c373e (patch)
tree5d2312db1a8002a5baf6f2b44a15e0f4bf44ef49 /pkgs/development/libraries/libgbinder
parentbe6ac65b52d85056a69c548d52e70b2b60a038cd (diff)
libgbinder: remove `with lib;`
Diffstat (limited to 'pkgs/development/libraries/libgbinder')
-rw-r--r--pkgs/development/libraries/libgbinder/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libgbinder/default.nix b/pkgs/development/libraries/libgbinder/default.nix
index 32ff8a1e216fd..5096221184866 100644
--- a/pkgs/development/libraries/libgbinder/default.nix
+++ b/pkgs/development/libraries/libgbinder/default.nix
@@ -42,11 +42,11 @@ stdenv.mkDerivation rec {
     sed -i -e "s@Cflags: @Cflags: $($PKG_CONFIG --cflags libglibutil) @g" $dev/lib/pkgconfig/$pname.pc
   '';
 
-  meta = with lib; {
+  meta = {
     description = "GLib-style interface to binder";
     homepage = "https://github.com/mer-hybris/libgbinder";
-    license = licenses.bsd3;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ mcaju ];
+    license = lib.licenses.bsd3;
+    platforms = lib.platforms.linux;
+    maintainers = with lib.maintainers; [ mcaju ];
   };
 }