0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/modules: stdenv.lib -> lib

This commit is contained in:
Pavol Rusnak 2021-01-17 21:14:59 +01:00
parent 50cbe8b517
commit 66dc9dbb59
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
6 changed files with 19 additions and 23 deletions

View file

@ -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 ];
};
}