about summary refs log tree commit diff
path: root/perl/lib/Nix/Store.pm
blob: 1ae3b04b7e6f5600dbfef8133557e45bf8ec99b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package Nix::Store;

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 queryReferences queryPathInfo queryDeriver queryPathHash
    topoSortPaths computeFSClosure followLinksToStorePath exportPaths
    hashPath hashFile hashString
    addToStore makeFixedOutputPath
    derivationFromPath
);

our $VERSION = '0.15';

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

1;
__END__