nixos/modules: stdenv.lib -> lib

This commit is contained in:
Pavol Rusnak
2021-01-17 21:40:51 +01:00
parent 50cbe8b517
commit 66dc9dbb59
6 changed files with 19 additions and 23 deletions
@@ -4,8 +4,8 @@ stdenv.mkDerivation rec {
src = ./.;
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ boost nix ];
meta = {
license = stdenv.lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ chkno ];
meta = with lib; {
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ chkno ];
};
}