summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorChuck <chuck@intelligence.org>2019-09-06 10:46:45 -0700
committerLinus Heckemann <git@sphalerite.org>2019-11-04 15:11:45 +0100
commitd89ccc1554d9b4e8064c9d07bf23652a3bd52fce (patch)
tree69fcb22a872801874f59c38e70cab5fe2e2effe7 /nixos/modules
parent23369829579594bd8fd1b9423e399f2aeaca5488 (diff)
downloadnixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.tar
nixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.tar.gz
nixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.tar.bz2
nixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.tar.lz
nixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.tar.xz
nixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.tar.zst
nixpkgs-d89ccc1554d9b4e8064c9d07bf23652a3bd52fce.zip
Correct syntax for license specification
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/installer/tools/nixos-option/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/installer/tools/nixos-option/default.nix b/nixos/modules/installer/tools/nixos-option/default.nix
index 87ba38c29ca..2c2674ad28d 100644
--- a/nixos/modules/installer/tools/nixos-option/default.nix
+++ b/nixos/modules/installer/tools/nixos-option/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
   src = ./.;
   nativeBuildInputs = [ cmake pkgconfig ];
   buildInputs = [ boost nix ];
-  meta {
+  meta = {
     license = stdenv.lib.licenses.lgpl2Plus;
-  }
+  };
 }