nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix user-facing typos (mainly in descriptions)

+54 -54
+2 -2
nixos/modules/security/duosec.nix
··· 110 110 default = false; 111 111 description = '' 112 112 Print the contents of <literal>/etc/motd</literal> to screen 113 - after a succesful login. 113 + after a successful login. 114 114 ''; 115 115 }; 116 116 ··· 145 145 146 146 When $DUO_PASSCODE is non-empty, it will override 147 147 autopush. The SSH client will need SendEnv DUO_PASSCODE in 148 - its configuration, and the SSH server will similarily need 148 + its configuration, and the SSH server will similarly need 149 149 AcceptEnv DUO_PASSCODE. 150 150 ''; 151 151 };
+1 -1
nixos/modules/services/mail/mlmmj.nix
··· 90 90 enable = true; 91 91 recipientDelimiter= "+"; 92 92 extraMasterConf = '' 93 - mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-recieve -F -L ${spoolDir}/$nextHop 93 + mlmmj unix - n n - - pipe flags=ORhu user=mlmmj argv=${pkgs.mlmmj}/bin/mlmmj-receive -F -L ${spoolDir}/$nextHop 94 94 ''; 95 95 96 96 extraAliases = concatMapStrings (alias cfg.listDomain) cfg.mailLists;
+1 -1
nixos/modules/services/monitoring/cadvisor.nix
··· 11 11 enable = mkOption { 12 12 default = false; 13 13 type = types.bool; 14 - description = "Wherther to enable cadvisor service."; 14 + description = "Whether to enable cadvisor service."; 15 15 }; 16 16 17 17 host = mkOption {
+2 -2
nixos/modules/services/monitoring/statsd.nix
··· 53 53 }; 54 54 55 55 mgmt_address = mkOption { 56 - description = "Address to run managment TCP interface on"; 56 + description = "Address to run management TCP interface on"; 57 57 default = "127.0.0.1"; 58 58 type = types.str; 59 59 }; ··· 65 65 }; 66 66 67 67 backends = mkOption { 68 - description = "List of backends statsd will use for data persistance"; 68 + description = "List of backends statsd will use for data persistence"; 69 69 default = ["graphite"]; 70 70 example = ["graphite" pkgs.nodePackages."statsd-influxdb-backend"]; 71 71 type = types.listOf (types.either types.str types.package);
+1 -1
nixos/modules/services/network-filesystems/nfsd.nix
··· 61 61 default = null; 62 62 example = 4002; 63 63 description = '' 64 - Use fixed port for rpc.mountd, usefull if server is behind firewall. 64 + Use fixed port for rpc.mountd, useful if server is behind firewall. 65 65 ''; 66 66 }; 67 67
+1 -1
nixos/modules/services/networking/i2pd.nix
··· 142 142 type = types.int; 143 143 default = 80; 144 144 description = '' 145 - Port to forward incoming trafic to. 80 by default. 145 + Port to forward incoming traffic to. 80 by default. 146 146 ''; 147 147 }; 148 148 keyFile = mkOption {
+2 -2
nixos/modules/services/networking/tox-bootstrapd.nix
··· 24 24 default = false; 25 25 description = 26 26 '' 27 - Whether to enable the Tox DHT boostrap daemon. 27 + Whether to enable the Tox DHT bootstrap daemon. 28 28 ''; 29 29 }; 30 30 ··· 45 45 default = ""; 46 46 description = 47 47 '' 48 - Configuration for boostrap daemon. 48 + Configuration for bootstrap daemon. 49 49 See <link xlink:href="https://github.com/irungentoo/toxcore/blob/master/other/bootstrap_daemon/tox-bootstrapd.conf"/> 50 50 and <link xlink:href="http://wiki.tox.im/Nodes"/>. 51 51 '';
+1 -1
nixos/modules/services/web-servers/zope2.nix
··· 24 24 http_address = mkOption { 25 25 default = "localhost:8080"; 26 26 type = types.string; 27 - description = "Give a port and adress for the HTTP server."; 27 + description = "Give a port and address for the HTTP server."; 28 28 }; 29 29 30 30 user = mkOption {
+3 -3
nixos/modules/system/boot/systemd.nix
··· 695 695 default = {}; 696 696 type = types.attrsOf types.optionSet; 697 697 options = [ linkOptions ]; 698 - description = "Definiton of systemd network links."; 698 + description = "Definition of systemd network links."; 699 699 }; 700 700 701 701 systemd.network.netdevs = mkOption { 702 702 default = {}; 703 703 type = types.attrsOf types.optionSet; 704 704 options = [ netdevOptions ]; 705 - description = "Definiton of systemd network devices."; 705 + description = "Definition of systemd network devices."; 706 706 }; 707 707 708 708 systemd.network.networks = mkOption { 709 709 default = {}; 710 710 type = types.attrsOf types.optionSet; 711 711 options = [ networkOptions networkConfig ]; 712 - description = "Definiton of systemd networks."; 712 + description = "Definition of systemd networks."; 713 713 }; 714 714 715 715 systemd.network.units = mkOption {
+2 -2
nixos/modules/tasks/filesystems/nfs.nix
··· 38 38 default = null; 39 39 example = 4000; 40 40 description = '' 41 - Use fixed port for rpc.statd, usefull if NFS server is behind firewall. 41 + Use fixed port for rpc.statd, useful if NFS server is behind firewall. 42 42 ''; 43 43 }; 44 44 lockdPort = mkOption { ··· 46 46 example = 4001; 47 47 description = '' 48 48 Use fixed port for NFS lock manager kernel module (lockd/nlockmgr), 49 - usefull if NFS server is behind firewall. 49 + useful if NFS server is behind firewall. 50 50 ''; 51 51 }; 52 52 };
+1 -1
nixos/modules/virtualisation/qemu-vm.nix
··· 266 266 Networking-related command-line options that should be passed to qemu. 267 267 The default is to use userspace networking (slirp). 268 268 269 - If you override this option, be adviced to keep 269 + If you override this option, be advised to keep 270 270 ''${QEMU_NET_OPTS:+,$QEMU_NET_OPTS} (as seen in the default) 271 271 to keep the default runtime behaviour. 272 272 '';
+1 -1
pkgs/applications/audio/transcode/default.nix
··· 17 17 enableParallelBuilding = true; 18 18 19 19 meta = with stdenv.lib; { 20 - description = "Suite of command line utilities for transcoding video and audio codecs, and for converting beween different container formats"; 20 + description = "Suite of command line utilities for transcoding video and audio codecs, and for converting between different container formats"; 21 21 homepage = http://www.transcoding.org/; 22 22 license = licenses.lgpl2Plus; 23 23 platforms = platforms.linux;
+1 -1
pkgs/applications/misc/sqliteman/default.nix
··· 22 22 ''; 23 23 24 24 meta = with stdenv.lib; { 25 - description = "Sqliteman is simple but powerfull Sqlite3 GUI database manager."; 25 + description = "A simple but powerful Sqlite3 GUI database manager"; 26 26 homepage = http://sqliteman.yarpen.cz/; 27 27 license = licenses.gpl2Plus; 28 28 platforms = platforms.linux;
+1 -1
pkgs/applications/version-management/git-and-tools/git-bz/default.nix
··· 37 37 git-bz is a tool for integrating the Git command line with the 38 38 Bugzilla bug-tracking system. Operations such as attaching patches to 39 39 bugs, applying patches in bugs to your current tree, and closing bugs 40 - once you've pushed the fixes publically can be done completely from 40 + once you've pushed the fixes publicly can be done completely from 41 41 the command line without having to go to your web browser. 42 42 43 43 Authentication for git-bz is done by reading the cookies for the
+1 -1
pkgs/applications/video/shotcut/default.nix
··· 22 22 meta = with stdenv.lib; { 23 23 description = "A free, open source, cross-platform video editor"; 24 24 longDescription = '' 25 - An offical binary for Shotcut, which includes all the 25 + An official binary for Shotcut, which includes all the 26 26 dependencies pinned to specific versions, is provided on 27 27 http://shotcut.org. 28 28
+2 -2
pkgs/development/compilers/rustc/common.nix
··· 11 11 then "macos-i386" 12 12 else if stdenv.system == "x86_64-darwin" 13 13 then "macos-x86_64" 14 - else abort "no snapshot to boostrap for this platform (missing platform url suffix)"; 14 + else abort "no snapshot to bootstrap for this platform (missing platform url suffix)"; 15 15 16 16 target = if stdenv.system == "i686-linux" 17 17 then "i686-unknown-linux-gnu" ··· 21 21 then "i686-apple-darwin" 22 22 else if stdenv.system == "x86_64-darwin" 23 23 then "x86_64-apple-darwin" 24 - else abort "no snapshot to boostrap for this platform (missing target triple"; 24 + else abort "no snapshot to bootstrap for this platform (missing target triple"; 25 25 26 26 meta = with stdenv.lib; { 27 27 homepage = http://www.rust-lang.org/;
+1 -1
pkgs/development/libraries/gdome2/default.nix
··· 18 18 19 19 meta = { 20 20 homepage = http://gdome2.cs.unibo.it/; 21 - description = "DOM C library developped for the Gnome project"; 21 + description = "DOM C library developed for the Gnome project"; 22 22 license = stdenv.lib.licenses.lgpl21Plus; 23 23 maintainers = [ stdenv.lib.maintainers.roconnor ]; 24 24 broken = true;
+1 -1
pkgs/development/libraries/hunspell/default.nix
··· 23 23 Main features: 24 24 25 25 * Extended support for language peculiarities; Unicode character encoding, compounding and complex morphology. 26 - * Improved suggestion using n-gram similarity, rule and dictionary based pronounciation data. 26 + * Improved suggestion using n-gram similarity, rule and dictionary based pronunciation data. 27 27 * Morphological analysis, stemming and generation. 28 28 * Hunspell is based on MySpell and works also with MySpell dictionaries. 29 29 * C++ library under GPL/LGPL/MPL tri-license.
+1 -1
pkgs/development/libraries/libcdio/0.82.nix
··· 16 16 meta = { 17 17 description = "A library for OS-independent CD-ROM and CD image access"; 18 18 longDescription = '' 19 - GNU libcdio is a library for OS-idependent CD-ROM and 19 + GNU libcdio is a library for OS-independent CD-ROM and 20 20 CD image access. It includes a library for working with 21 21 ISO-9660 filesystems (libiso9660), as well as utility 22 22 programs such as an audio CD player and an extractor.
+1 -1
pkgs/development/libraries/libcdio/default.nix
··· 16 16 meta = { 17 17 description = "A library for OS-independent CD-ROM and CD image access"; 18 18 longDescription = '' 19 - GNU libcdio is a library for OS-idependent CD-ROM and 19 + GNU libcdio is a library for OS-independent CD-ROM and 20 20 CD image access. It includes a library for working with 21 21 ISO-9660 filesystems (libiso9660), as well as utility 22 22 programs such as an audio CD player and an extractor.
+1 -1
pkgs/development/libraries/readline/6.2.nix
··· 38 38 reedit those lines, and perform csh-like history expansion on 39 39 previous commands. 40 40 41 - The history facilites are also placed into a separate library, 41 + The history facilities are also placed into a separate library, 42 42 the History library, as part of the build process. The History 43 43 library may be used without Readline in applications which 44 44 desire its capabilities.
+1 -1
pkgs/development/libraries/readline/6.3.nix
··· 41 41 reedit those lines, and perform csh-like history expansion on 42 42 previous commands. 43 43 44 - The history facilites are also placed into a separate library, 44 + The history facilities are also placed into a separate library, 45 45 the History library, as part of the build process. The History 46 46 library may be used without Readline in applications which 47 47 desire its capabilities.
+1 -1
pkgs/development/libraries/slib/default.nix
··· 43 43 provides a platform independent framework for using packages of Scheme 44 44 procedures and syntax. As distributed, SLIB contains useful packages 45 45 for all Scheme implementations. Its catalog can be transparently 46 - extended to accomodate packages specific to a site, implementation, 46 + extended to accommodate packages specific to a site, implementation, 47 47 user, or directory. 48 48 49 49 SLIB supports Bigloo, Chez, ELK 3.0, Gambit 4.0, Guile, JScheme, Kawa,
+1 -1
pkgs/development/libraries/ti-rpc/default.nix
··· 34 34 migrated their SunRPC library to a TI-RPC (Transport Independent 35 35 RPC) implementation. This implementation allows the support of 36 36 other transports than UDP and TCP over IPv4. FreeBSD provides a 37 - TI-RPC library ported from NetBSD with improvments. This library 37 + TI-RPC library ported from NetBSD with improvements. This library 38 38 already supports IPv6. So, the FreeBSD release 5.2.1 TI-RPC has 39 39 been ported to replace the SunRPC of the glibc. 40 40 '';
+1 -1
pkgs/development/misc/avr-gcc-with-avr-libc/default.nix
··· 79 79 }; 80 80 81 81 meta = with stdenv.lib; { 82 - description = "AVR developement environment including binutils, avr-gcc and avr-libc"; 82 + description = "AVR development environment including binutils, avr-gcc and avr-libc"; 83 83 # I've tried compiling the packages separately.. too much hassle. This just works. Fine. 84 84 license = ["GPL" "LGPL"]; # see single packages .. 85 85 homepage = []; # dito
+1 -1
pkgs/development/ocaml-modules/tyxml/default.nix
··· 16 16 17 17 meta = with stdenv.lib; { 18 18 homepage = http://ocsigen.org/tyxml/; 19 - description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML ouput, using static typing"; 19 + description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; 20 20 license = licenses.lgpl21; 21 21 platforms = ocaml.meta.platforms; 22 22 maintainers = with maintainers; [
+1 -1
pkgs/development/tools/build-managers/cargo/common.nix
··· 11 11 then "i686-apple-darwin" 12 12 else if stdenv.system == "x86_64-darwin" 13 13 then "x86_64-apple-darwin" 14 - else throw "no snapshot to boostrap for this platform (missing platform url suffix)"; 14 + else throw "no snapshot to bootstrap for this platform (missing platform url suffix)"; 15 15 16 16 snapshotHash = if stdenv.system == "i686-linux" 17 17 then "4dea04e278192c5409f43794a98f20a8f59df2d9"
+1 -1
pkgs/development/tools/ocaml/ocp-build/default.nix
··· 30 30 ocp-build is a build system for OCaml application, based on simple 31 31 descriptions of packages. ocp-build combines the descriptions of 32 32 packages, and optimize the parallel compilation of files depending on 33 - the number of cores and the automatically-infered dependencies 33 + the number of cores and the automatically-inferred dependencies 34 34 between source files. 35 35 ''; 36 36 license = licenses.gpl3;
+1 -1
pkgs/games/fairymax/default.nix
··· 29 29 A version of micro-Max that reads the piece description 30 30 from a file fmax.ini, so that arbitrary fairy pieces can be 31 31 implemented. This version (4.8J) supports up to 15 piece types, 32 - and board sizes upto 12x8 board. A Linux port exists in the 32 + and board sizes up to 12x8. A Linux port exists in the 33 33 format of a debian package. 34 34 ''; 35 35 license = stdenv.lib.licenses.free ;
+1 -1
pkgs/games/hedgewars/default.nix
··· 37 37 ''; 38 38 39 39 meta = with stdenv.lib; { 40 - description = "Turn-based strategy artillery game similiar to Worms"; 40 + description = "Turn-based strategy artillery game similar to Worms"; 41 41 homepage = http://hedgewars.org/; 42 42 license = licenses.gpl2; 43 43 longDescription = ''
+1 -1
pkgs/games/openttd/default.nix
··· 38 38 39 39 In multiplayer networked mode, players may: 40 40 - play competitively as different businesses 41 - - play cooperatively controling the same business 41 + - play cooperatively controlling the same business 42 42 - observe as spectators 43 43 ''; 44 44 homepage = http://www.openttd.org/;
+1 -1
pkgs/misc/emulators/stella/default.nix
··· 20 20 the GNU General Public License (GPL). Stella was originally 21 21 developed for Linux by Bradford W. Mott, and is currently 22 22 maintained by Stephen Anthony. 23 - As of its 3.5 release, Stella is officialy donationware. 23 + As of its 3.5 release, Stella is officially donationware. 24 24 ''; 25 25 homepage = http://stella.sourceforge.net/; 26 26 license = licenses.gpl2;
+1 -1
pkgs/misc/emulators/uae/default.nix
··· 10 10 buildInputs = [ pkgconfig gtk alsaLib SDL ]; 11 11 12 12 meta = { 13 - description = "Ultimate/Unix/Unusuable Amiga Emulator"; 13 + description = "Ultimate/Unix/Unusable Amiga Emulator"; 14 14 license = stdenv.lib.licenses.gpl2Plus; 15 15 homepage = http://www.amigaemulator.org; 16 16 maintainers = [ stdenv.lib.maintainers.sander ];
+1 -1
pkgs/tools/X11/sselp/default.nix
··· 19 19 20 20 meta = { 21 21 homepage = "http://tools.suckless.org/sselp"; 22 - description = "Prints the X selection to stdout, usefull in scripts"; 22 + description = "Prints the X selection to stdout, useful in scripts"; 23 23 license = stdenv.lib.licenses.mit; 24 24 maintainers = [stdenv.lib.maintainers.magnetophon ]; 25 25 platforms = stdenv.lib.platforms.linux;
+1 -1
pkgs/tools/compression/kzipmix/default.nix
··· 17 17 ''; 18 18 19 19 meta = { 20 - description = "A tool that agressively optimizes the sizes of Zip archives"; 20 + description = "A tool that aggressively optimizes the sizes of Zip archives"; 21 21 license = stdenv.lib.licenses.unfree; 22 22 homepage = http://advsys.net/ken/utils.htm; 23 23 maintainers = [ stdenv.lib.maintainers.sander ];
+1 -1
pkgs/tools/graphics/pngout/default.nix
··· 25 25 ''; 26 26 27 27 meta = { 28 - description = "A tool that agressively optimizes the sizes of PNG images"; 28 + description = "A tool that aggressively optimizes the sizes of PNG images"; 29 29 license = stdenv.lib.licenses.unfree; 30 30 homepage = http://advsys.net/ken/utils.htm; 31 31 maintainers = [ stdenv.lib.maintainers.sander ];
+1 -1
pkgs/tools/misc/autojump/default.nix
··· 42 42 works by maintaining a database of the directories you use the 43 43 most from the command line. The jstat command shows you the 44 44 current contents of the database. You need to work a little 45 - bit before the database becomes useable. Once your database 45 + bit before the database becomes usable. Once your database 46 46 is reasonably complete, you can “jump” to a directory by 47 47 typing "j dirspec", where dirspec is a few characters of the 48 48 directory you want to jump to. It will jump to the most used
+1 -1
pkgs/tools/misc/unclutter/default.nix
··· 21 21 longDescription = '' 22 22 Unclutter hides your X mouse cursor when you do not need it, to prevent 23 23 it from getting in the way. You have only to move the mouse to restore 24 - the mouse cursor. Unclutter is very usefull in tiling wm's where you do 24 + the mouse cursor. Unclutter is very useful in tiling wm's where you do 25 25 not need the mouse often. 26 26 27 27 Just run it from your .bash_profile like that:
+1 -1
pkgs/tools/networking/bwm-ng/default.nix
··· 38 38 Info 39 39 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. 40 40 41 - 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. 41 + 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. 42 42 43 43 (from homepage) 44 44 '';
+1 -1
pkgs/tools/security/gnupg/20.nix
··· 40 40 GnuPG is the GNU project's complete and free implementation of 41 41 the OpenPGP standard as defined by RFC4880. GnuPG allows to 42 42 encrypt and sign your data and communication, features a 43 - versatile key managment system as well as access modules for all 43 + versatile key management system as well as access modules for all 44 44 kind of public key directories. GnuPG, also known as GPG, is a 45 45 command line tool with features for easy integration with other 46 46 applications. A wealth of frontend applications and libraries
+1 -1
pkgs/tools/security/haveged/default.nix
··· 16 16 random number generator based upon an adaptation of the HAVEGE algorithm. 17 17 Haveged was created to remedy low-entropy conditions in the Linux random device 18 18 that can occur under some workloads, especially on headless servers. Current development 19 - of haveged is directed towards improving overall reliablity and adaptability while minimizing 19 + of haveged is directed towards improving overall reliability and adaptability while minimizing 20 20 the barriers to using haveged for other tasks. 21 21 ''; 22 22 homepage = http://www.issihosts.com/haveged/;
+1 -1
pkgs/tools/security/opensc-dnie-wrapper/default.nix
··· 57 57 description = "Access to the opensc tools and firefox using the Spanish national ID SmartCard"; 58 58 longDescription = '' 59 59 Opensc needs a special configuration and special drivers to use the SmartCard 60 - the Spanish governement provides to the citizens as ID card. 60 + the Spanish government provides to the citizens as ID card. 61 61 Some wrapper scripts take care for the proper opensc configuration to be used, in order 62 62 to access the certificates in the SmartCard through the opensc tools or firefox. 63 63 Opensc will require a pcscd daemon running, managing the access to the card reader.
+1 -1
pkgs/tools/text/multitran/mtutils/default.nix
··· 24 24 25 25 meta = { 26 26 homepage = http://multitran.sourceforge.net/; 27 - description = "Multitran: simple command line utilities for dictionary maintainance"; 27 + description = "Multitran: simple command line utilities for dictionary maintenance"; 28 28 license = stdenv.lib.licenses.gpl2; 29 29 maintainers = with stdenv.lib.maintainers; [viric]; 30 30 platforms = with stdenv.lib.platforms; linux;
+1 -1
pkgs/tools/typesetting/tex/latex2html/default.nix
··· 18 18 19 19 meta = { 20 20 homepage = "http://www.latex2html.org/"; 21 - description = "Convertor written in Perl that converts LaTeX documents to HTML"; 21 + description = "Converter written in Perl that converts LaTeX documents to HTML"; 22 22 license = stdenv.lib.licenses.gpl2Plus; 23 23 }; 24 24
+1 -1
pkgs/top-level/perl-packages.nix
··· 5904 5904 buildInputs = [ TestFatal ]; 5905 5905 propagatedBuildInputs = [ ClassMethodModifiers DevelGlobalDestruction ImportInto ModuleRuntime RoleTiny strictures ]; 5906 5906 meta = { 5907 - description = "Minimalist Object Orientation (with Moose compatiblity)"; 5907 + description = "Minimalist Object Orientation (with Moose compatibility)"; 5908 5908 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 5909 5909 }; 5910 5910 };
+2 -2
pkgs/top-level/python-packages.nix
··· 666 666 667 667 meta = with stdenv.lib; { 668 668 homepage = https://github.com/nicolargo/batinfo; 669 - description = "A simple Python lib to retreive battery information"; 669 + description = "A simple Python lib to retrieve battery information"; 670 670 license = licenses.lgpl3; 671 671 platforms = platforms.all; 672 672 maintainers = [ maintainers.koral ]; ··· 12098 12098 buildInputs = with self; [ requests gevent ]; 12099 12099 12100 12100 meta = { 12101 - description = "GRequests allows you to use Requests with Gevent to make asyncronous HTTP Requests easily."; 12101 + description = "GRequests allows you to use Requests with Gevent to make asynchronous HTTP Requests easily."; 12102 12102 homepage = https://github.com/kennethreitz/grequests; 12103 12103 license = "bsd"; 12104 12104 maintainers = [ stdenv.lib.maintainers.matejc ];