From c2d27d30cfe000c4adff91e6cbde63c2a5b92b43 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 May 2016 11:18:45 +0200 Subject: nix-copy-closure / build-remote.pl: Disable signature checking This restores the Nix 1.11 behaviour. --- perl/lib/Nix/Store.xs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl') diff --git a/perl/lib/Nix/Store.xs b/perl/lib/Nix/Store.xs index ee60ce13011d..7a5458113675 100644 --- a/perl/lib/Nix/Store.xs +++ b/perl/lib/Nix/Store.xs @@ -182,11 +182,11 @@ void exportPaths(int fd, ...) } -void importPaths(int fd) +void importPaths(int fd, int dontCheckSigs) PPCODE: try { FdSource source(fd); - store()->importPaths(source, 0); + store()->importPaths(source, 0, dontCheckSigs); } catch (Error & e) { croak("%s", e.what()); } -- cgit 1.4.1