Loading pkgs/development/tools/build-managers/bob/default.nix +9 −1 Original line number Diff line number Diff line { lib, buildGoModule, fetchFromGitHub }: { lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "bob"; Loading @@ -17,6 +17,14 @@ buildGoModule rec { excludedPackages = [ "example/server-db" "test/e2e" "tui-example" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' installShellCompletion --cmd bob \ --bash <($out/bin/bob completion) \ --zsh <($out/bin/bob completion -z) ''; # tests require network access doCheck = false; Loading Loading
pkgs/development/tools/build-managers/bob/default.nix +9 −1 Original line number Diff line number Diff line { lib, buildGoModule, fetchFromGitHub }: { lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "bob"; Loading @@ -17,6 +17,14 @@ buildGoModule rec { excludedPackages = [ "example/server-db" "test/e2e" "tui-example" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' installShellCompletion --cmd bob \ --bash <($out/bin/bob completion) \ --zsh <($out/bin/bob completion -z) ''; # tests require network access doCheck = false; Loading