summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAndreas Fehn <fehnomenal@fehn.systems>2022-01-01 22:52:20 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-01-11 16:23:55 -0800
commit9acedfd7ef32253237311dc3c78286773dbcb0d6 (patch)
tree2417a6de05fe5a6b025b0800a6d10767156468f2 /pkgs/shells
parent801c111fb7ec3383187442b9c5edd62560464880 (diff)
elvish: fix building unusable executable
Two executables with conflicting names were build where the latter one will not start the interactive shell. (cherry picked from commit 54e83f150d305208a2088e71fa31132cd1186ec2)
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/elvish/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/shells/elvish/default.nix b/pkgs/shells/elvish/default.nix
index 4a95f1627f43..e94354d68045 100644
--- a/pkgs/shells/elvish/default.nix
+++ b/pkgs/shells/elvish/default.nix
@@ -4,7 +4,7 @@ buildGoModule rec {
pname = "elvish";
version = "0.17.0";
- excludedPackages = [ "website" ];
+ subPackages = [ "cmd/elvish" ];
ldflags = [ "-s" "-w" "-X github.com/elves/elvish/pkg/buildinfo.Version==${version}" "-X github.com/elves/elvish/pkg/buildinfo.Reproducible=true" ];