2011-10-10 20:12:40 +02:00
|
|
|
package Nix::Store;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
require Exporter;
|
|
|
|
|
|
|
|
our @ISA = qw(Exporter);
|
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( 'all' => [ qw( ) ] );
|
|
|
|
|
|
|
|
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
|
|
|
|
|
2011-11-29 14:01:24 +01:00
|
|
|
our @EXPORT = qw(
|
2015-03-04 16:27:42 +01:00
|
|
|
setVerbosity
|
2011-11-29 14:01:24 +01:00
|
|
|
isValidPath queryReferences queryPathInfo queryDeriver queryPathHash
|
2012-07-18 00:55:39 +02:00
|
|
|
queryPathFromHashPart
|
2014-07-11 16:02:19 +02:00
|
|
|
topoSortPaths computeFSClosure followLinksToStorePath exportPaths importPaths
|
2015-06-03 15:33:17 +02:00
|
|
|
hashPath hashFile hashString convertHash
|
2015-02-04 16:43:32 +01:00
|
|
|
signString checkSignature
|
2011-12-02 13:09:24 +01:00
|
|
|
addToStore makeFixedOutputPath
|
2012-03-19 04:14:21 +01:00
|
|
|
derivationFromPath
|
2015-10-09 12:49:47 +02:00
|
|
|
addTempRoot
|
2020-09-17 10:42:51 +02:00
|
|
|
getBinDir getStoreDir
|
2021-07-30 11:55:14 +02:00
|
|
|
queryRawRealisation
|
2011-11-29 14:01:24 +01:00
|
|
|
);
|
2011-10-10 20:12:40 +02:00
|
|
|
|
|
|
|
our $VERSION = '0.15';
|
|
|
|
|
2012-05-11 01:03:23 +02:00
|
|
|
sub backtick {
|
|
|
|
open(RES, "-|", @_) or die;
|
|
|
|
local $/;
|
|
|
|
my $res = <RES> || "";
|
|
|
|
close RES or die;
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
2020-09-17 10:42:51 +02:00
|
|
|
require XSLoader;
|
|
|
|
XSLoader::load('Nix::Store', $VERSION);
|
2011-10-10 20:12:40 +02:00
|
|
|
|
|
|
|
1;
|
|
|
|
__END__
|