summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2016-11-21 20:55:37 +0100
committerDominik Picheta <dominikpicheta@gmail.com>2016-11-21 20:55:37 +0100
commite6f6323e770d326e633c5f1d7e5205d7cb2c4ca3 (patch)
treed1dc0e8b6d0478f1fef56454e7573880222706d1
parent7c9a61f24159393e40dfc6f36fb5ec4c4987fafa (diff)
downloadNim-e6f6323e770d326e633c5f1d7e5205d7cb2c4ca3.tar.gz
Fix inaccuracy surrounding Nimble in doc/nims.rst.
-rw-r--r--doc/nims.rst18
1 files changed, 2 insertions, 16 deletions
diff --git a/doc/nims.rst b/doc/nims.rst
index 7c76efe42..12d86a905 100644
--- a/doc/nims.rst
+++ b/doc/nims.rst
@@ -75,22 +75,8 @@ done:
 Nimble integration
 ==================
 
-A ``project.nims`` file can also be used as an alternative to
-a ``project.nimble`` file to specify the meta information (for example, author,
-description) and dependencies of a Nimble package. This means you can easily
-have platform specific dependencies:
-
-.. code-block:: nim
-
-  version = "1.0"
-  author = "The green goo."
-  description = "Lexer generation and regex implementation for Nim."
-  license = "MIT"
-
-  when defined(windows):
-    requires "oldwinapi >= 1.0"
-  else:
-    requires "gtk2 >= 1.0"
+See the `Nimble readme <https://github.com/nim-lang/nimble#readme>`_
+for more information.