1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 10:31:15 +02:00

nix-store --export: Export paths in topologically sorted order

Fixes #118.
This commit is contained in:
Eelco Dolstra 2013-05-23 14:55:36 -04:00
parent 107505e13a
commit b09b87321c
2 changed files with 4 additions and 2 deletions

View file

@ -328,7 +328,7 @@ Path addPermRoot(StoreAPI & store, const Path & storePath,
/* Sort a set of paths topologically under the references relation.
If p refers to q, then p follows q in this list. */
If p refers to q, then p preceeds q in this list. */
Paths topoSortPaths(StoreAPI & store, const PathSet & paths);