From a2c5e7d80dafdaaf6205152177adf7c86766f7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 28 Sep 2023 14:06:35 +0200 Subject: [PATCH] fix pname of clan-cli for nix run --- pkgs/clan-cli/flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/flake-module.nix b/pkgs/clan-cli/flake-module.nix index 598f03351..3a657e91c 100644 --- a/pkgs/clan-cli/flake-module.nix +++ b/pkgs/clan-cli/flake-module.nix @@ -11,7 +11,7 @@ }; # Don't leak python packages into a devshell. # It can be very confusing if you `nix run` than than load the cli from the devshell instead. - clan-cli = pkgs.runCommand "clan-cli" { } '' + clan-cli = pkgs.runCommand "clan" { } '' mkdir $out ln -s ${self'.packages.clan-cli-unwrapped}/bin $out '';