aboutsummaryrefslogtreecommitdiff
path: root/scripts/update-manifest.pl
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-01-23 16:50:19 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-01-23 16:50:19 +0000
commitbae75ca5a18edbb9fb959e2e48065a1987ffb61a (patch)
treec1b169f6f290cb1e4c412a61051dd3a1ee987bc5 /scripts/update-manifest.pl
parent36d9258c0dbfeab095dc5727b6ebcb55afacb0a6 (diff)
* New kind of manifest object: "localPath", which denotes that a store
path can be created by copying it from another location in the file system. This is useful in the NixOS installation.
Diffstat (limited to 'scripts/update-manifest.pl')
-rwxr-xr-xscripts/update-manifest.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/update-manifest.pl b/scripts/update-manifest.pl
index 566f64673..ac0ce749d 100755
--- a/scripts/update-manifest.pl
+++ b/scripts/update-manifest.pl
@@ -8,9 +8,10 @@ die unless scalar @ARGV == 2;
my $cache = $ARGV[0];
my $manifest = $ARGV[1];
my %narFiles;
+my %localPaths;
my %patches;
-readManifest $manifest, \%narFiles, \%patches;
+readManifest $manifest, \%narFiles, \%localPaths, \%patches;
foreach my $storePath (keys %narFiles) {
my $narFileList = $narFiles{$storePath};