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