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
+2 -2
View File
@@ -18,7 +18,7 @@ let
feedparser
sabyenc3
]);
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
version = "3.1.1";
pname = "sabnzbd";
@@ -46,6 +46,6 @@ in stdenv.mkDerivation rec {
homepage = "https://sabnzbd.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ fridh ];
maintainers = with lib.maintainers; [ fridh ];
};
}