2011-10-10 20:12:40 +02:00
|
|
|
package Nix::Store;
|
|
|
|
|
|
|
|
use 5.010001;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
require Exporter;
|
|
|
|
|
|
|
|
our @ISA = qw(Exporter);
|
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( 'all' => [ qw( ) ] );
|
|
|
|
|
|
|
|
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
|
|
|
|
|
2011-10-11 17:41:13 +02:00
|
|
|
our @EXPORT = qw(isValidPath topoSortPaths computeFSClosure followLinksToStorePath);
|
2011-10-10 20:12:40 +02:00
|
|
|
|
|
|
|
our $VERSION = '0.15';
|
|
|
|
|
|
|
|
require XSLoader;
|
|
|
|
XSLoader::load('Nix::Store', $VERSION);
|
|
|
|
|
|
|
|
1;
|
|
|
|
__END__
|