(args Args, new []E)
| 17 | } |
| 18 | |
| 19 | func appendArgs[E any](args Args, new []E) Args { |
| 20 | for _, elem := range new { |
| 21 | args = append(args, elem) |
| 22 | } |
| 23 | return args |
| 24 | } |
| 25 | |
| 26 | func allowUnfreeEnv(curEnv []string) []string { |
| 27 | return append(curEnv, "NIXPKGS_ALLOW_UNFREE=1") |
no outgoing calls
no test coverage detected