summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2021-01-19 23:50:30 +0100
committerGitHub <noreply@github.com>2021-01-19 23:50:30 +0100
commitd51d15e1cfca597870f5bd059c23447044438467 (patch)
tree77b0a1c6fa0e7776465c16eaf53409e0e373c3da /nixos/modules/installer
parent53b4872ff28cee7291408cd969a8315ab460a1ac (diff)
parent66dc9dbb59f03975a9d2f4940f2f2bf9867e09d6 (diff)
downloadnixpkgs-d51d15e1cfca597870f5bd059c23447044438467.tar
nixpkgs-d51d15e1cfca597870f5bd059c23447044438467.tar.gz
nixpkgs-d51d15e1cfca597870f5bd059c23447044438467.tar.bz2
nixpkgs-d51d15e1cfca597870f5bd059c23447044438467.tar.lz
nixpkgs-d51d15e1cfca597870f5bd059c23447044438467.tar.xz
nixpkgs-d51d15e1cfca597870f5bd059c23447044438467.tar.zst
nixpkgs-d51d15e1cfca597870f5bd059c23447044438467.zip
Merge pull request #109665 from prusnak/stdenv-lib-nixos
nixos/modules: stdenv.lib -> lib
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/tools/nixos-option/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/installer/tools/nixos-option/default.nix b/nixos/modules/installer/tools/nixos-option/default.nix
index be521651cbe..72eec3a3836 100644
--- a/nixos/modules/installer/tools/nixos-option/default.nix
+++ b/nixos/modules/installer/tools/nixos-option/default.nix
@@ -4,8 +4,8 @@ stdenv.mkDerivation rec {
   src = ./.;
   nativeBuildInputs = [ cmake pkg-config ];
   buildInputs = [ boost nix ];
-  meta = {
-    license = stdenv.lib.licenses.lgpl2Plus;
-    maintainers = with lib.maintainers; [ chkno ];
+  meta = with lib; {
+    license = licenses.lgpl2Plus;
+    maintainers = with maintainers; [ chkno ];
   };
 }