Commit a2bd5c891082

Vincent Demeester <vincent@sbr.pm>
2021-10-11 17:56:08
nix/packages: fix lib usage
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 84cd5f6
Changed files (6)
nix
packages
gnome
extensions
bluetooth-quick-connect
hide-top-bar
nightthemeswitcher
noannoyance
shell
kubernix
nix/packages/gnome/extensions/bluetooth-quick-connect/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     cp -r * $out/share/gnome-shell/extensions/${uuid}
   '';
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "Allows paired Bluetooth devices to be connected and disconnected via the GNOME system menu, without need to enter the Settings app every time.";
     license = licenses.gpl3;
     maintainers = with maintainers; [ vdemeester ];
nix/packages/gnome/extensions/hide-top-bar/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
     cp -r * $out/share/gnome-shell/extensions/${uuid}
   '';
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "Hide GNOME's top bar when it gets into your way.";
     license = licenses.gpl3;
     maintainers = with maintainers; [ vdemeester ];
nix/packages/gnome/extensions/nightthemeswitcher/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
     unzip build/${uuid}.shell-extension.zip -d $out/share/gnome-shell/extensions/${uuid}
   '';
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "Automatically toggle your light and dark GTK, GNOME Shell, icon and cursor themes variants, switch backgrounds and run custom commands at sunset and sunrise.";
     license = licenses.gpl3;
     maintainers = with maintainers; [ vdemeester ];
nix/packages/gnome/extensions/noannoyance/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     cp -r * $out/share/gnome-shell/extensions/${uuid}
   '';
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "Disables the “Window Is Ready” notification and changes the policy of the window manager so that new windows are always focused.";
     license = licenses.gpl3;
     maintainers = with maintainers; [ vdemeester ];
nix/packages/gnome/extensions/shell/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     cp -r _build $out/share/gnome-shell/extensions/${uuid}
   '';
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "Pop Shell is a keyboard-driven layer for GNOME Shell which allows for quick and sensible navigation and management of windows.";
     license = licenses.gpl3;
     maintainers = with maintainers; [ vdemeester ];
nix/packages/kubernix/default.nix
@@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
   cargoSha256 = "0xaf056x46c5561hypd85ni7bkijvz26kpwy5iiw19ijnlj1adw9";
   doCheck = false;
 
-  meta = with lib; {
+  meta = with stdenv.lib; {
     description = "Single dependency Kubernetes clusters for local testing, experimenting and development";
     homepage = https://github.com/saschagrunert/kubernix;
     license = with licenses; [ mit ];