From b74e03a870ce7638ad2eb66edaaa4383dedaef73 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 Nov 2016 15:50:19 +0100 Subject: [PATCH] Revert "Disable programs.sqlite generation" This reverts commit 7f2bbc884c7213cd753ba2aa3d6e02717262e1d3. --- mirror-nixos-branch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirror-nixos-branch.pl b/mirror-nixos-branch.pl index 25125b8..8492303 100755 --- a/mirror-nixos-branch.pl +++ b/mirror-nixos-branch.pl @@ -145,7 +145,7 @@ if ($bucket->head_key("$releasePrefix")) { } # Generate the programs.sqlite database and put it in nixexprs.tar.xz. - if (0 && $channelName =~ /nixos/ && -e "$tmpDir/store-paths") { + if ($channelName =~ /nixos/ && -e "$tmpDir/store-paths") { File::Path::make_path("$tmpDir/unpack"); system("tar", "xfJ", "$tmpDir/nixexprs.tar.xz", "-C", "$tmpDir/unpack") == 0 or die; my $exprDir = glob("$tmpDir/unpack/*");