pkgs/servers: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 14:24:03 +07:00
parent e245ae3c3a
commit 872973d7d1
172 changed files with 454 additions and 455 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
{ fetchurl, stdenv, buildEnv, roundcube, roundcubePlugins }:
{ fetchurl, lib, stdenv, buildEnv, roundcube, roundcubePlugins }:
stdenv.mkDerivation rec {
pname = "roundcube";
@@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
meta = {
description = "Open Source Webmail Software";
maintainers = with stdenv.lib.maintainers; [ vskilet globin ma27 ];
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.all;
maintainers = with lib.maintainers; [ vskilet globin ma27 ];
license = lib.licenses.gpl3;
platforms = lib.platforms.all;
};
}