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(
|
|
|
|
isValidPath queryReferences queryPathInfo queryDeriver queryPathHash
|
|
|
|
topoSortPaths computeFSClosure followLinksToStorePath exportPaths
|
2011-12-02 12:09:24 +00:00
|
|
|
hashPath hashFile hashString
|
|
|
|
addToStore makeFixedOutputPath
|
2012-03-19 03:14:21 +00:00
|
|
|
derivationFromPath
|
2011-11-29 13:01:24 +00:00
|
|
|
);
|
2011-10-10 18:12:40 +00:00
|
|
|
|
|
|
|
our $VERSION = '0.15';
|
|
|
|
|
|
|
|
require XSLoader;
|
|
|
|
XSLoader::load('Nix::Store', $VERSION);
|
|
|
|
|
|
|
|
1;
|
|
|
|
__END__
|