Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos: Provide a defaultText for type = package

We don't want to build all those things along with the manual, so that's
what the defaultText attribute is for.

Unfortunately a few of them were missing, so let's add them.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig 7bdcfb33 60c7bd12

+7
+1
nixos/modules/services/computing/slurm/slurm.nix
··· 37 package = mkOption { 38 type = types.package; 39 default = pkgs.slurm-llnl; 40 example = literalExample "pkgs.slurm-llnl-full"; 41 description = '' 42 The packge to use for slurm binaries.
··· 37 package = mkOption { 38 type = types.package; 39 default = pkgs.slurm-llnl; 40 + defaultText = "pkgs.slurm-llnl"; 41 example = literalExample "pkgs.slurm-llnl-full"; 42 description = '' 43 The packge to use for slurm binaries.
+1
nixos/modules/services/misc/matrix-synapse.nix
··· 61 package = mkOption { 62 type = types.package; 63 default = pkgs.matrix-synapse; 64 description = '' 65 Overridable attribute of the matrix synapse server package to use. 66 '';
··· 61 package = mkOption { 62 type = types.package; 63 default = pkgs.matrix-synapse; 64 + defaultText = "pkgs.matrix-synapse"; 65 description = '' 66 Overridable attribute of the matrix synapse server package to use. 67 '';
+1
nixos/modules/services/misc/plex.nix
··· 58 package = mkOption { 59 type = types.package; 60 default = pkgs.plex; 61 description = '' 62 The Plex package to use. Plex subscribers may wish to use their own 63 package here, pointing to subscriber-only server versions.
··· 58 package = mkOption { 59 type = types.package; 60 default = pkgs.plex; 61 + defaultText = "pkgs.plex"; 62 description = '' 63 The Plex package to use. Plex subscribers may wish to use their own 64 package here, pointing to subscriber-only server versions.
+1
nixos/modules/services/networking/consul.nix
··· 33 package = mkOption { 34 type = types.package; 35 default = pkgs.consul; 36 description = '' 37 The package used for the Consul agent and CLI. 38 '';
··· 33 package = mkOption { 34 type = types.package; 35 default = pkgs.consul; 36 + defaultText = "pkgs.consul"; 37 description = '' 38 The package used for the Consul agent and CLI. 39 '';
+1
nixos/modules/services/networking/ejabberd.nix
··· 32 package = mkOption { 33 type = types.package; 34 default = pkgs.ejabberd; 35 description = "ejabberd server package to use"; 36 }; 37
··· 32 package = mkOption { 33 type = types.package; 34 default = pkgs.ejabberd; 35 + defaultText = "pkgs.ejabberd"; 36 description = "ejabberd server package to use"; 37 }; 38
+1
nixos/modules/services/security/haka.nix
··· 59 60 package = mkOption { 61 default = pkgs.haka; 62 type = types.package; 63 description = " 64 Which Haka derivation to use.
··· 59 60 package = mkOption { 61 default = pkgs.haka; 62 + defaultText = "pkgs.haka"; 63 type = types.package; 64 description = " 65 Which Haka derivation to use.
+1
nixos/modules/services/web-servers/apache-httpd/owncloud.nix
··· 370 package = mkOption { 371 type = types.package; 372 default = pkgs.owncloud70; 373 example = literalExample "pkgs.owncloud70"; 374 description = '' 375 PostgreSQL package to use.
··· 370 package = mkOption { 371 type = types.package; 372 default = pkgs.owncloud70; 373 + defaultText = "pkgs.owncloud70"; 374 example = literalExample "pkgs.owncloud70"; 375 description = '' 376 PostgreSQL package to use.