Merge pull request #109665 from prusnak/stdenv-lib-nixos

nixos/modules: stdenv.lib -> lib
This commit is contained in:
Robert Hensing
2021-01-19 23:50:30 +01:00
committed by GitHub
6 changed files with 19 additions and 23 deletions
@@ -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 ];
};
}