From 41c4501a792ca56c60baf7d7439db78deba93ecd Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Mon, 26 Jan 2026 10:27:32 +0100 Subject: [PATCH] certbot-full: set pname and version --- .../development/python-modules/certbot/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/certbot/default.nix b/pkgs/development/python-modules/certbot/default.nix index 662b4ca4c8a5..fd65dcc1929f 100644 --- a/pkgs/development/python-modules/certbot/default.nix +++ b/pkgs/development/python-modules/certbot/default.nix @@ -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";