forked from lix-project/hydra
Forgot to change Nix to Nix::Store in one place
This commit is contained in:
parent
c613b885f2
commit
2c328e4b20
|
@ -3,6 +3,7 @@
|
||||||
use strict;
|
use strict;
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
use File::stat;
|
use File::stat;
|
||||||
|
use Nix::Store;
|
||||||
use Hydra::Schema;
|
use Hydra::Schema;
|
||||||
use Hydra::Helper::Nix;
|
use Hydra::Helper::Nix;
|
||||||
use Hydra::Helper::AddBuilds;
|
use Hydra::Helper::AddBuilds;
|
||||||
|
@ -384,12 +385,12 @@ sub doBuild {
|
||||||
my $closuresize = 0;
|
my $closuresize = 0;
|
||||||
|
|
||||||
if (isValidPath($outPath)) {
|
if (isValidPath($outPath)) {
|
||||||
my ($deriver, $hash, $time, $narSize, $refs) = Nix::queryPathInfo($outPath);
|
my ($deriver, $hash, $time, $narSize, $refs) = queryPathInfo($outPath);
|
||||||
$size = $narSize;
|
$size = $narSize;
|
||||||
|
|
||||||
my @closure = Nix::computeFSClosure(0, 0, $outPath);
|
my @closure = computeFSClosure(0, 0, $outPath);
|
||||||
foreach my $path (@closure) {
|
foreach my $path (@closure) {
|
||||||
my ($deriver, $hash, $time, $narSize, $refs) = Nix::queryPathInfo($path);
|
my ($deriver, $hash, $time, $narSize, $refs) = queryPathInfo($path);
|
||||||
$closuresize += $narSize;
|
$closuresize += $narSize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue