9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
32 lines
779 B
Nix
32 lines
779 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libtool, pkg-config
|
|
, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libp11";
|
|
version = "0.4.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenSC";
|
|
repo = "libp11";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "0hcl706i04nw5c1sj7l6sj6m0yjq6qijz345v498jll58fp5wif8";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-enginesdir=${placeholder "out"}/lib/engines"
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config 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;
|
|
};
|
|
}
|