1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 06:01:48 +02:00

* Remove the localPaths feature in manifests since it's no longer used

and redundant anyway.
This commit is contained in:
Eelco Dolstra 2011-04-06 09:16:22 +00:00
parent 0423d0692a
commit 1e7e4f21ba
7 changed files with 10 additions and 47 deletions

View file

@ -8,10 +8,9 @@ die unless scalar @ARGV == 2;
my $cache = $ARGV[0];
my $manifest = $ARGV[1];
my %narFiles;
my %localPaths;
my %patches;
readManifest $manifest, \%narFiles, \%localPaths, \%patches;
readManifest $manifest, \%narFiles, \%patches;
foreach my $storePath (keys %narFiles) {
my $narFileList = $narFiles{$storePath};