pkgs/development/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -19,13 +19,13 @@ stdenv.mkDerivation {
postInstall = ''
wrapProgram $out/bin/rdocker \
--prefix PATH : ${stdenv.lib.makeBinPath [ openssh ]}
--prefix PATH : ${lib.makeBinPath [ openssh ]}
'';
meta = with lib; {
description = "Securely control a remote docker daemon CLI using ssh forwarding, no SSL setup needed";
homepage = "https://github.com/dvddarias/rdocker";
maintainers = [ stdenv.lib.maintainers.pneumaticat ];
maintainers = [ lib.maintainers.pneumaticat ];
license = licenses.mit;
platforms = platforms.unix;
};