summary refs log tree commit diff
path: root/pkgs/shells/elvish
diff options
context:
space:
mode:
authorAndreas Fehn <fehnomenal@fehn.systems>2022-01-01 22:52:20 +0100
committerAndreas Fehn <fehnomenal@fehn.systems>2022-01-01 22:58:36 +0100
commit54e83f150d305208a2088e71fa31132cd1186ec2 (patch)
tree61cc250237c204a0829b2c0c8c81ce3d362905ac /pkgs/shells/elvish
parent08322e6c6d6d8c1e1767c9cef225f4f32c938bed (diff)
downloadnixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.tar
nixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.tar.gz
nixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.tar.bz2
nixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.tar.lz
nixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.tar.xz
nixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.tar.zst
nixpkgs-54e83f150d305208a2088e71fa31132cd1186ec2.zip
elvish: fix building unusable executable
Two executables with conflicting names were build where the latter one
will not start the interactive shell.
Diffstat (limited to 'pkgs/shells/elvish')
-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 4a95f1627f4..e94354d6804 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" ];