Skip to content

Commit 7dfdc99

Browse files
committed
Improve docs.
Signed-off-by: Rolf Schröder <rolf.schr@gmail.com>
1 parent ae96dcc commit 7dfdc99

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ There are several options to use the Nix version
146146

147147
::
148148

149-
# Enter an interactive environment with all dependencies setup.
149+
# Enter an interactive environment with all dependencies set up.
150150
cd etc/nix
151151
nix develop
152152
> ../../manage.py ... # invoke the local checkout
@@ -162,7 +162,7 @@ There are several options to use the Nix version
162162

163163
The Nix installation uses `mach-nix <https://github.com/DavHau/mach-nix>`__ to handle Python dependencies because some dependencies are currently not available as Nix packages.
164164
All Python dependencies are automatically fetched from ``./requirements.txt``.
165-
Non-Python dependencies are curated in ``etc/nix/flake.nix:Vulnerablecode.propagatedBuildInputs``.
165+
Non-Python dependencies are curated in ``etc/nix/flake.nix:vulnerablecode.propagatedBuildInputs``.
166166

167167

168168
Tests

etc/nix/flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
version = builtins.head (builtins.match ''.*version=["']?([^"',]+).*''
2626
(builtins.readFile (vulnerablecode-src + "/setup.py")));
2727

28+
# Common shell code.
2829
libSh = ./lib.sh;
2930

3031
# System types to support.

etc/nix/lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
# Setup postgres; see the README.md for the the latest instructions.
3+
# Setup postgres; see the README.md for the latest instructions.
44
#
55
# $RUNDIR is used to prevent postgres from accessings its default run dir at
66
# /run/postgresql. See

0 commit comments

Comments
 (0)