about summary refs log blame commit diff
path: root/perl/lib/Nix/Store.pm
blob: bef6e7460ca78c3e58908c4fb15f3ba13516b9f1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                              
                                                                                    







                                       
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'} } );

our @EXPORT = qw(isValidPath topoSortPaths computeFSClosure followLinksToStorePath);

our $VERSION = '0.15';

require XSLoader;
XSLoader::load('Nix::Store', $VERSION);

1;
__END__