fix pname of clan-cli for nix run

This commit is contained in:
Jörg Thalheim
2023-09-28 14:06:35 +02:00
parent 155a427ab5
commit a2c5e7d80d

View File

@@ -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
'';