0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

Fix typo introduced by #22677

This commit is contained in:
Kier Davis 2017-02-15 23:44:11 +00:00
parent d4e5bb34b7
commit 5e3a26e07b
No known key found for this signature in database
GPG key ID: 8139C5FCEDA73ABF

View file

@ -25,12 +25,12 @@ in
package = mkOption { package = mkOption {
type = types.package; type = types.package;
default = pkgs.quasselDaemon_qt5; default = pkgs.quasselDaemon;
defaultText = "pkgs.quasselDaemon_qt5"; defaultText = "pkgs.quasselDaemon";
description = '' description = ''
The package of the quassel daemon. The package of the quassel daemon.
''; '';
example = literalExample "pkgs.quasselDaemon_qt5"; example = literalExample "pkgs.quasselDaemon";
}; };
interfaces = mkOption { interfaces = mkOption {