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.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, libpng, libjpeg
|
|
, guiSupport ? false, libX11
|
|
|
|
# see http://dlib.net/compile.html
|
|
, avxSupport ? stdenv.hostPlatform.avxSupport
|
|
, cudaSupport ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dlib";
|
|
version = "19.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davisking";
|
|
repo = "dlib";
|
|
rev ="v${version}";
|
|
sha256 = "00jwklnl21l3hlvb0bjc6rl3hgi88vxb41dsn4m0kh436c9v0rl3";
|
|
};
|
|
|
|
postPatch = ''
|
|
rm -rf dlib/external
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_DLIB_USE_CUDA=${if cudaSupport then "1" else "0"}"
|
|
"-DUSE_AVX_INSTRUCTIONS=${if avxSupport then "yes" else "no"}" ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ libpng libjpeg ] ++ lib.optional guiSupport libX11;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A general purpose cross-platform C++ machine learning library";
|
|
homepage = "http://www.dlib.net";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ christopherpoole ma27 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|