2021-01-18 22:50:56 -08:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, libpng, libjpeg
|
2017-09-03 15:22:13 +03:00
|
|
|
, guiSupport ? false, libX11
|
2019-03-03 14:21:04 +01:00
|
|
|
|
|
|
|
# see http://dlib.net/compile.html
|
2020-08-05 02:32:41 +00:00
|
|
|
, avxSupport ? stdenv.hostPlatform.avxSupport
|
2020-04-13 01:22:45 +09:00
|
|
|
, cudaSupport ? true
|
2017-09-03 15:22:13 +03:00
|
|
|
}:
|
2014-10-07 16:36:30 +11:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dlib";
|
2020-08-08 23:25:54 +02:00
|
|
|
version = "19.21";
|
2014-10-07 16:36:30 +11:00
|
|
|
|
2017-03-12 11:15:38 -05:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "davisking";
|
|
|
|
repo = "dlib";
|
|
|
|
rev ="v${version}";
|
2020-08-08 23:25:54 +02:00
|
|
|
sha256 = "00jwklnl21l3hlvb0bjc6rl3hgi88vxb41dsn4m0kh436c9v0rl3";
|
2014-10-07 16:36:30 +11:00
|
|
|
};
|
|
|
|
|
2017-09-03 15:22:13 +03:00
|
|
|
postPatch = ''
|
|
|
|
rm -rf dlib/external
|
|
|
|
'';
|
|
|
|
|
2019-05-05 23:40:20 +00:00
|
|
|
cmakeFlags = [
|
2020-04-13 01:22:45 +09:00
|
|
|
"-DUSE_DLIB_USE_CUDA=${if cudaSupport then "1" else "0"}"
|
|
|
|
"-DUSE_AVX_INSTRUCTIONS=${if avxSupport then "yes" else "no"}" ];
|
2019-03-03 14:21:04 +01:00
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2018-06-17 19:33:14 +02:00
|
|
|
buildInputs = [ libpng libjpeg ] ++ lib.optional guiSupport libX11;
|
2014-10-07 16:36:30 +11:00
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2014-11-11 14:20:43 +01:00
|
|
|
description = "A general purpose cross-platform C++ machine learning library";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.dlib.net";
|
2017-03-12 11:15:38 -05:00
|
|
|
license = licenses.boost;
|
2018-06-17 19:33:14 +02:00
|
|
|
maintainers = with maintainers; [ christopherpoole ma27 ];
|
2018-03-17 17:34:32 +01:00
|
|
|
platforms = platforms.linux;
|
2014-10-07 16:36:30 +11:00
|
|
|
};
|
|
|
|
}
|