summary refs log blame commit diff
path: root/pkgs/development/libraries/libp11/default.nix
blob: 903aa66ce60d1d33fc4ce10c7fdcbb2eb284606c (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                             

                         
                   
                     



                         
                                
                                                                    
    
 


                                                        
 
                                                           
 
                            
 

                                
                           
                                                                                             
                                                
                                  
                              

    
{ stdenv, fetchFromGitHub, autoreconfHook, libtool, pkgconfig
, openssl }:

stdenv.mkDerivation rec {
  pname = "libp11";
  version = "0.4.10";

  src = fetchFromGitHub {
    owner = "OpenSC";
    repo = "libp11";
    rev = "${pname}-${version}";
    sha256 = "1m4aw45bqichhx7cn78d8l1r1v0ccvwzlfj09fay2l9rfic5jgfz";
  };

  configureFlags = [
    "--with-enginesdir=${placeholder "out"}/lib/engines"
  ];

  nativeBuildInputs = [ autoreconfHook pkgconfig libtool ];

  buildInputs = [ openssl ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Small layer on top of PKCS#11 API to make PKCS#11 implementations easier";
    homepage = https://github.com/OpenSC/libp11;
    license = licenses.lgpl21Plus;
    platforms = platforms.all;
  };
}