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