···110110 default = false;111111 description = ''112112 Print the contents of <literal>/etc/motd</literal> to screen113113- after a succesful login.113113+ after a successful login.114114 '';115115 };116116···145145146146 When $DUO_PASSCODE is non-empty, it will override147147 autopush. The SSH client will need SendEnv DUO_PASSCODE in148148- its configuration, and the SSH server will similarily need148148+ its configuration, and the SSH server will similarly need149149 AcceptEnv DUO_PASSCODE.150150 '';151151 };
···1111 enable = mkOption {1212 default = false;1313 type = types.bool;1414- description = "Wherther to enable cadvisor service.";1414+ description = "Whether to enable cadvisor service.";1515 };16161717 host = mkOption {
+2-2
nixos/modules/services/monitoring/statsd.nix
···5353 };54545555 mgmt_address = mkOption {5656- description = "Address to run managment TCP interface on";5656+ description = "Address to run management TCP interface on";5757 default = "127.0.0.1";5858 type = types.str;5959 };···6565 };66666767 backends = mkOption {6868- description = "List of backends statsd will use for data persistance";6868+ description = "List of backends statsd will use for data persistence";6969 default = ["graphite"];7070 example = ["graphite" pkgs.nodePackages."statsd-influxdb-backend"];7171 type = types.listOf (types.either types.str types.package);
···6161 default = null;6262 example = 4002;6363 description = ''6464- Use fixed port for rpc.mountd, usefull if server is behind firewall.6464+ Use fixed port for rpc.mountd, useful if server is behind firewall.6565 '';6666 };6767
+1-1
nixos/modules/services/networking/i2pd.nix
···142142 type = types.int;143143 default = 80;144144 description = ''145145- Port to forward incoming trafic to. 80 by default.145145+ Port to forward incoming traffic to. 80 by default.146146 '';147147 };148148 keyFile = mkOption {
···2424 default = false;2525 description =2626 ''2727- Whether to enable the Tox DHT boostrap daemon.2727+ Whether to enable the Tox DHT bootstrap daemon.2828 '';2929 };3030···4545 default = "";4646 description =4747 ''4848- Configuration for boostrap daemon.4848+ Configuration for bootstrap daemon.4949 See <link xlink:href="https://github.com/irungentoo/toxcore/blob/master/other/bootstrap_daemon/tox-bootstrapd.conf"/>5050 and <link xlink:href="http://wiki.tox.im/Nodes"/>.5151 '';
+1-1
nixos/modules/services/web-servers/zope2.nix
···2424 http_address = mkOption {2525 default = "localhost:8080";2626 type = types.string;2727- description = "Give a port and adress for the HTTP server.";2727+ description = "Give a port and address for the HTTP server.";2828 };29293030 user = mkOption {
···3838 default = null;3939 example = 4000;4040 description = ''4141- Use fixed port for rpc.statd, usefull if NFS server is behind firewall.4141+ Use fixed port for rpc.statd, useful if NFS server is behind firewall.4242 '';4343 };4444 lockdPort = mkOption {···4646 example = 4001;4747 description = ''4848 Use fixed port for NFS lock manager kernel module (lockd/nlockmgr),4949- usefull if NFS server is behind firewall.4949+ useful if NFS server is behind firewall.5050 '';5151 };5252 };
+1-1
nixos/modules/virtualisation/qemu-vm.nix
···266266 Networking-related command-line options that should be passed to qemu.267267 The default is to use userspace networking (slirp).268268269269- If you override this option, be adviced to keep269269+ If you override this option, be advised to keep270270 ''${QEMU_NET_OPTS:+,$QEMU_NET_OPTS} (as seen in the default)271271 to keep the default runtime behaviour.272272 '';
+1-1
pkgs/applications/audio/transcode/default.nix
···1717 enableParallelBuilding = true;18181919 meta = with stdenv.lib; {2020- description = "Suite of command line utilities for transcoding video and audio codecs, and for converting beween different container formats";2020+ description = "Suite of command line utilities for transcoding video and audio codecs, and for converting between different container formats";2121 homepage = http://www.transcoding.org/;2222 license = licenses.lgpl2Plus;2323 platforms = platforms.linux;
+1-1
pkgs/applications/misc/sqliteman/default.nix
···2222 '';23232424 meta = with stdenv.lib; {2525- description = "Sqliteman is simple but powerfull Sqlite3 GUI database manager.";2525+ description = "A simple but powerful Sqlite3 GUI database manager";2626 homepage = http://sqliteman.yarpen.cz/;2727 license = licenses.gpl2Plus;2828 platforms = platforms.linux;
···3737 git-bz is a tool for integrating the Git command line with the3838 Bugzilla bug-tracking system. Operations such as attaching patches to3939 bugs, applying patches in bugs to your current tree, and closing bugs4040- once you've pushed the fixes publically can be done completely from4040+ once you've pushed the fixes publicly can be done completely from4141 the command line without having to go to your web browser.42424343 Authentication for git-bz is done by reading the cookies for the
+1-1
pkgs/applications/video/shotcut/default.nix
···2222 meta = with stdenv.lib; {2323 description = "A free, open source, cross-platform video editor";2424 longDescription = ''2525- An offical binary for Shotcut, which includes all the2525+ An official binary for Shotcut, which includes all the2626 dependencies pinned to specific versions, is provided on2727 http://shotcut.org.2828
+2-2
pkgs/development/compilers/rustc/common.nix
···1111 then "macos-i386"1212 else if stdenv.system == "x86_64-darwin"1313 then "macos-x86_64"1414- else abort "no snapshot to boostrap for this platform (missing platform url suffix)";1414+ else abort "no snapshot to bootstrap for this platform (missing platform url suffix)";15151616 target = if stdenv.system == "i686-linux"1717 then "i686-unknown-linux-gnu"···2121 then "i686-apple-darwin"2222 else if stdenv.system == "x86_64-darwin"2323 then "x86_64-apple-darwin"2424- else abort "no snapshot to boostrap for this platform (missing target triple";2424+ else abort "no snapshot to bootstrap for this platform (missing target triple";25252626 meta = with stdenv.lib; {2727 homepage = http://www.rust-lang.org/;
+1-1
pkgs/development/libraries/gdome2/default.nix
···18181919 meta = {2020 homepage = http://gdome2.cs.unibo.it/;2121- description = "DOM C library developped for the Gnome project";2121+ description = "DOM C library developed for the Gnome project";2222 license = stdenv.lib.licenses.lgpl21Plus;2323 maintainers = [ stdenv.lib.maintainers.roconnor ];2424 broken = true;
+1-1
pkgs/development/libraries/hunspell/default.nix
···2323 Main features:24242525 * Extended support for language peculiarities; Unicode character encoding, compounding and complex morphology.2626- * Improved suggestion using n-gram similarity, rule and dictionary based pronounciation data.2626+ * Improved suggestion using n-gram similarity, rule and dictionary based pronunciation data.2727 * Morphological analysis, stemming and generation.2828 * Hunspell is based on MySpell and works also with MySpell dictionaries.2929 * C++ library under GPL/LGPL/MPL tri-license.
+1-1
pkgs/development/libraries/libcdio/0.82.nix
···1616 meta = {1717 description = "A library for OS-independent CD-ROM and CD image access";1818 longDescription = ''1919- GNU libcdio is a library for OS-idependent CD-ROM and1919+ GNU libcdio is a library for OS-independent CD-ROM and2020 CD image access. It includes a library for working with2121 ISO-9660 filesystems (libiso9660), as well as utility2222 programs such as an audio CD player and an extractor.
+1-1
pkgs/development/libraries/libcdio/default.nix
···1616 meta = {1717 description = "A library for OS-independent CD-ROM and CD image access";1818 longDescription = ''1919- GNU libcdio is a library for OS-idependent CD-ROM and1919+ GNU libcdio is a library for OS-independent CD-ROM and2020 CD image access. It includes a library for working with2121 ISO-9660 filesystems (libiso9660), as well as utility2222 programs such as an audio CD player and an extractor.
+1-1
pkgs/development/libraries/readline/6.2.nix
···3838 reedit those lines, and perform csh-like history expansion on3939 previous commands.40404141- The history facilites are also placed into a separate library,4141+ The history facilities are also placed into a separate library,4242 the History library, as part of the build process. The History4343 library may be used without Readline in applications which4444 desire its capabilities.
+1-1
pkgs/development/libraries/readline/6.3.nix
···4141 reedit those lines, and perform csh-like history expansion on4242 previous commands.43434444- The history facilites are also placed into a separate library,4444+ The history facilities are also placed into a separate library,4545 the History library, as part of the build process. The History4646 library may be used without Readline in applications which4747 desire its capabilities.
+1-1
pkgs/development/libraries/slib/default.nix
···4343 provides a platform independent framework for using packages of Scheme4444 procedures and syntax. As distributed, SLIB contains useful packages4545 for all Scheme implementations. Its catalog can be transparently4646- extended to accomodate packages specific to a site, implementation,4646+ extended to accommodate packages specific to a site, implementation,4747 user, or directory.48484949 SLIB supports Bigloo, Chez, ELK 3.0, Gambit 4.0, Guile, JScheme, Kawa,
+1-1
pkgs/development/libraries/ti-rpc/default.nix
···3434 migrated their SunRPC library to a TI-RPC (Transport Independent3535 RPC) implementation. This implementation allows the support of3636 other transports than UDP and TCP over IPv4. FreeBSD provides a3737- TI-RPC library ported from NetBSD with improvments. This library3737+ TI-RPC library ported from NetBSD with improvements. This library3838 already supports IPv6. So, the FreeBSD release 5.2.1 TI-RPC has3939 been ported to replace the SunRPC of the glibc.4040 '';
···7979 };80808181 meta = with stdenv.lib; {8282- description = "AVR developement environment including binutils, avr-gcc and avr-libc";8282+ description = "AVR development environment including binutils, avr-gcc and avr-libc";8383 # I've tried compiling the packages separately.. too much hassle. This just works. Fine.8484 license = ["GPL" "LGPL"]; # see single packages ..8585 homepage = []; # dito
+1-1
pkgs/development/ocaml-modules/tyxml/default.nix
···16161717 meta = with stdenv.lib; {1818 homepage = http://ocsigen.org/tyxml/;1919- description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML ouput, using static typing";1919+ description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing";2020 license = licenses.lgpl21;2121 platforms = ocaml.meta.platforms;2222 maintainers = with maintainers; [
···1111 then "i686-apple-darwin"1212 else if stdenv.system == "x86_64-darwin"1313 then "x86_64-apple-darwin"1414- else throw "no snapshot to boostrap for this platform (missing platform url suffix)";1414+ else throw "no snapshot to bootstrap for this platform (missing platform url suffix)";15151616 snapshotHash = if stdenv.system == "i686-linux"1717 then "4dea04e278192c5409f43794a98f20a8f59df2d9"
···3030 ocp-build is a build system for OCaml application, based on simple3131 descriptions of packages. ocp-build combines the descriptions of3232 packages, and optimize the parallel compilation of files depending on3333- the number of cores and the automatically-infered dependencies3333+ the number of cores and the automatically-inferred dependencies3434 between source files.3535 '';3636 license = licenses.gpl3;
+1-1
pkgs/games/fairymax/default.nix
···2929 A version of micro-Max that reads the piece description3030 from a file fmax.ini, so that arbitrary fairy pieces can be3131 implemented. This version (4.8J) supports up to 15 piece types,3232- and board sizes upto 12x8 board. A Linux port exists in the3232+ and board sizes up to 12x8. A Linux port exists in the3333 format of a debian package.3434 '';3535 license = stdenv.lib.licenses.free ;
+1-1
pkgs/games/hedgewars/default.nix
···3737 '';38383939 meta = with stdenv.lib; {4040- description = "Turn-based strategy artillery game similiar to Worms";4040+ description = "Turn-based strategy artillery game similar to Worms";4141 homepage = http://hedgewars.org/;4242 license = licenses.gpl2;4343 longDescription = ''
+1-1
pkgs/games/openttd/default.nix
···38383939 In multiplayer networked mode, players may:4040 - play competitively as different businesses4141- - play cooperatively controling the same business4141+ - play cooperatively controlling the same business4242 - observe as spectators4343 '';4444 homepage = http://www.openttd.org/;
+1-1
pkgs/misc/emulators/stella/default.nix
···2020 the GNU General Public License (GPL). Stella was originally2121 developed for Linux by Bradford W. Mott, and is currently2222 maintained by Stephen Anthony.2323- As of its 3.5 release, Stella is officialy donationware. 2323+ As of its 3.5 release, Stella is officially donationware. 2424 '';2525 homepage = http://stella.sourceforge.net/;2626 license = licenses.gpl2;
···19192020 meta = {2121 homepage = "http://tools.suckless.org/sselp";2222- description = "Prints the X selection to stdout, usefull in scripts";2222+ description = "Prints the X selection to stdout, useful in scripts";2323 license = stdenv.lib.licenses.mit;2424 maintainers = [stdenv.lib.maintainers.magnetophon ];2525 platforms = stdenv.lib.platforms.linux;
+1-1
pkgs/tools/compression/kzipmix/default.nix
···1717 '';18181919 meta = {2020- description = "A tool that agressively optimizes the sizes of Zip archives";2020+ description = "A tool that aggressively optimizes the sizes of Zip archives";2121 license = stdenv.lib.licenses.unfree;2222 homepage = http://advsys.net/ken/utils.htm;2323 maintainers = [ stdenv.lib.maintainers.sander ];
+1-1
pkgs/tools/graphics/pngout/default.nix
···2525 '';26262727 meta = {2828- description = "A tool that agressively optimizes the sizes of PNG images";2828+ description = "A tool that aggressively optimizes the sizes of PNG images";2929 license = stdenv.lib.licenses.unfree;3030 homepage = http://advsys.net/ken/utils.htm;3131 maintainers = [ stdenv.lib.maintainers.sander ];
+1-1
pkgs/tools/misc/autojump/default.nix
···4242 works by maintaining a database of the directories you use the4343 most from the command line. The jstat command shows you the4444 current contents of the database. You need to work a little4545- bit before the database becomes useable. Once your database4545+ bit before the database becomes usable. Once your database4646 is reasonably complete, you can “jump” to a directory by4747 typing "j dirspec", where dirspec is a few characters of the4848 directory you want to jump to. It will jump to the most used
+1-1
pkgs/tools/misc/unclutter/default.nix
···2121 longDescription = ''2222 Unclutter hides your X mouse cursor when you do not need it, to prevent2323 it from getting in the way. You have only to move the mouse to restore2424- the mouse cursor. Unclutter is very usefull in tiling wm's where you do2424+ the mouse cursor. Unclutter is very useful in tiling wm's where you do2525 not need the mouse often.26262727 Just run it from your .bash_profile like that:
+1-1
pkgs/tools/networking/bwm-ng/default.nix
···3838 Info3939 This was influenced by the old bwm util written by Barney (barney@freewill.tzo.com) which had some issues with faster interfaces and was very simple. Since i had almost all code done anyway for other projects, i decided to create my own version.40404141- I actually dont know if netstat input is usefull at all. I saw this elsewhere, so i added it. Its target is "netstat 1.42 (2001-04-15)" linux or Free/Open/netBSD. If there are other formats i would be happy to add them.4141+ I actually don't know if netstat input is useful at all. I saw this elsewhere, so i added it. Its target is "netstat 1.42 (2001-04-15)" linux or Free/Open/netBSD. If there are other formats i would be happy to add them.42424343 (from homepage)4444 '';
+1-1
pkgs/tools/security/gnupg/20.nix
···4040 GnuPG is the GNU project's complete and free implementation of4141 the OpenPGP standard as defined by RFC4880. GnuPG allows to4242 encrypt and sign your data and communication, features a4343- versatile key managment system as well as access modules for all4343+ versatile key management system as well as access modules for all4444 kind of public key directories. GnuPG, also known as GPG, is a4545 command line tool with features for easy integration with other4646 applications. A wealth of frontend applications and libraries
+1-1
pkgs/tools/security/haveged/default.nix
···1616 random number generator based upon an adaptation of the HAVEGE algorithm.1717 Haveged was created to remedy low-entropy conditions in the Linux random device1818 that can occur under some workloads, especially on headless servers. Current development1919- of haveged is directed towards improving overall reliablity and adaptability while minimizing1919+ of haveged is directed towards improving overall reliability and adaptability while minimizing2020 the barriers to using haveged for other tasks.2121 '';2222 homepage = http://www.issihosts.com/haveged/;
···5757 description = "Access to the opensc tools and firefox using the Spanish national ID SmartCard";5858 longDescription = ''5959 Opensc needs a special configuration and special drivers to use the SmartCard6060- the Spanish governement provides to the citizens as ID card.6060+ the Spanish government provides to the citizens as ID card.6161 Some wrapper scripts take care for the proper opensc configuration to be used, in order6262 to access the certificates in the SmartCard through the opensc tools or firefox.6363 Opensc will require a pcscd daemon running, managing the access to the card reader.
+1-1
pkgs/tools/text/multitran/mtutils/default.nix
···24242525 meta = {2626 homepage = http://multitran.sourceforge.net/;2727- description = "Multitran: simple command line utilities for dictionary maintainance";2727+ description = "Multitran: simple command line utilities for dictionary maintenance";2828 license = stdenv.lib.licenses.gpl2;2929 maintainers = with stdenv.lib.maintainers; [viric];3030 platforms = with stdenv.lib.platforms; linux;
+1-1
pkgs/tools/typesetting/tex/latex2html/default.nix
···18181919 meta = {2020 homepage = "http://www.latex2html.org/";2121- description = "Convertor written in Perl that converts LaTeX documents to HTML";2121+ description = "Converter written in Perl that converts LaTeX documents to HTML";2222 license = stdenv.lib.licenses.gpl2Plus;2323 };2424
···666666667667 meta = with stdenv.lib; {668668 homepage = https://github.com/nicolargo/batinfo;669669- description = "A simple Python lib to retreive battery information";669669+ description = "A simple Python lib to retrieve battery information";670670 license = licenses.lgpl3;671671 platforms = platforms.all;672672 maintainers = [ maintainers.koral ];···1209812098 buildInputs = with self; [ requests gevent ];12099120991210012100 meta = {1210112101- description = "GRequests allows you to use Requests with Gevent to make asyncronous HTTP Requests easily.";1210112101+ description = "GRequests allows you to use Requests with Gevent to make asynchronous HTTP Requests easily.";1210212102 homepage = https://github.com/kennethreitz/grequests;1210312103 license = "bsd";1210412104 maintainers = [ stdenv.lib.maintainers.matejc ];