certbot-full: set pname and version (#483925)

This commit is contained in:
Jo
2026-01-29 18:02:45 +00:00
committed by GitHub
@@ -87,11 +87,15 @@ buildPythonPackage rec {
let
pythonEnv = python.withPackages f;
in
runCommand "certbot-with-plugins" { } ''
mkdir -p $out/bin
cd $out/bin
ln -s ${pythonEnv}/bin/certbot
'';
runCommand "certbot-with-plugins-${version}"
{
inherit pname version;
}
''
mkdir -p $out/bin
cd $out/bin
ln -s ${pythonEnv}/bin/certbot
'';
meta = {
homepage = "https://github.com/certbot/certbot";