postfixadmin: stdenv.lib -> lib

authored by Robin Gloster and committed by Maximilian Bosch 52a65021 13a5d7dc

+4 -4
+4 -4
pkgs/servers/postfixadmin/default.nix
··· 1 - { fetchFromGitHub, stdenv }: 2 3 stdenv.mkDerivation rec { 4 pname = "postfixadmin"; ··· 21 meta = { 22 description = "Web based virtual user administration interface for Postfix mail servers"; 23 homepage = "https://postfixadmin.sourceforge.io/"; 24 - maintainers = with stdenv.lib.maintainers; [ globin ]; 25 - license = stdenv.lib.licenses.gpl2Plus; 26 - platforms = stdenv.lib.platforms.all; 27 }; 28 }
··· 1 + { fetchFromGitHub, stdenv, lib }: 2 3 stdenv.mkDerivation rec { 4 pname = "postfixadmin"; ··· 21 meta = { 22 description = "Web based virtual user administration interface for Postfix mail servers"; 23 homepage = "https://postfixadmin.sourceforge.io/"; 24 + maintainers = with lib.maintainers; [ globin ]; 25 + license = lib.licenses.gpl2Plus; 26 + platforms = lib.platforms.all; 27 }; 28 }