bindings to be used in Nix's own Perl scripts. The only downside is that Perl XS and Automake/libtool don't really like each other, so building is a bit tricky.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			315 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| 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( );
 | |
| 
 | |
| our $VERSION = '0.15';
 | |
| 
 | |
| require XSLoader;
 | |
| XSLoader::load('Nix::Store', $VERSION);
 | |
| 
 | |
| 1;
 | |
| __END__
 |