about summary refs log tree commit diff
path: root/tools/nixery/server/builder
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-08-16T19·18+0200
committerVincent Ambo <github@tazj.in>2019-08-16T21·47+0100
commit3b65fc8c726a91eb155ff2e5bf116e5aeee488aa (patch)
tree5bf43e63fe62b332a180115e7856f9c455bf02d4 /tools/nixery/server/builder
parent501e6ded5f80215879ad7467cd7ca250f902422d (diff)
feat(server): add iana-etc and cacert to the shell convenience package
These probably should be part of every container image by default, but
adding it to the "shell" convenience name probably is our best bet for
now.
Diffstat (limited to 'tools/nixery/server/builder')
-rw-r--r--tools/nixery/server/builder/builder.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/server/builder/builder.go b/tools/nixery/server/builder/builder.go
index e241d3d0b0..46301d6c6a 100644
--- a/tools/nixery/server/builder/builder.go
+++ b/tools/nixery/server/builder/builder.go
@@ -88,7 +88,7 @@ type BuildResult struct {
 //
 // * `shell`: Includes bash, coreutils and other common command-line tools
 func convenienceNames(packages []string) []string {
-	shellPackages := []string{"bashInteractive", "coreutils", "moreutils", "nano"}
+	shellPackages := []string{"bashInteractive", "cacert", "coreutils", "iana-etc", "moreutils", "nano"}
 
 	if packages[0] == "shell" {
 		return append(packages[1:], shellPackages...)