commit a2bd5c891082e7a17a1fecf581f3c71085307748 parent 84cd5f67dc24ff7c30cfe3b7c4ffacfb9d1c0b7c Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 11 Oct 2021 17:56:08 +0200 nix/packages: fix lib usage Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/nix/packages/gnome/extensions/bluetooth-quick-connect/default.nix b/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 ]; diff --git a/nix/packages/gnome/extensions/hide-top-bar/default.nix b/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 ]; diff --git a/nix/packages/gnome/extensions/nightthemeswitcher/default.nix b/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 ]; diff --git a/nix/packages/gnome/extensions/noannoyance/default.nix b/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 ]; diff --git a/nix/packages/gnome/extensions/shell/default.nix b/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 ]; diff --git a/nix/packages/kubernix/default.nix b/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 ];