summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-04-01 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-04-01 04:20:00 +0000
commit2c10fcd44f4f7cb42ed6ddd145b8fec4fbf88580 (patch)
treef9e1093fdf12e7f4cf4d18be395b7fed40ab1fd4
parentopenafs: avoid top-level with (diff)
downloadnixpkgs-2c10fcd44f4f7cb42ed6ddd145b8fec4fbf88580.tar.gz
go-toml: exclude gotoml-test-encoder package
`gotoml-test-encoder` is only used for development
-rw-r--r--pkgs/development/tools/go-toml/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/tools/go-toml/default.nix b/pkgs/development/tools/go-toml/default.nix
index fa36ca7eee1a..a6f75db9426e 100644
--- a/pkgs/development/tools/go-toml/default.nix
+++ b/pkgs/development/tools/go-toml/default.nix
@@ -13,7 +13,11 @@ buildGoModule rec {
vendorHash = "sha256-4t/ft3XTfc7yrsFVMSfjdCur8QULho3NI2ym6gqjexI=";
- excludedPackages = [ "cmd/gotoml-test-decoder" "cmd/tomltestgen" ];
+ excludedPackages = [
+ "cmd/gotoml-test-decoder"
+ "cmd/gotoml-test-encoder"
+ "cmd/tomltestgen"
+ ];
ldflags = [ "-s" "-w" ];