2018-06-17 18:33:14 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, 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
|
|
|
|
, avxSupport ? 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";
|
2019-09-26 14:18:52 +01:00
|
|
|
version = "19.18";
|
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}";
|
2019-09-26 14:18:52 +01:00
|
|
|
sha256 = "1kbrcf35pn2ymyr8q48ls98n2zb7rrz5207kwpisfh6k22g802ic";
|
2014-10-07 06:36:30 +01:00
|
|
|
};
|
|
|
|
|
2017-09-03 13:22:13 +01:00
|
|
|
postPatch = ''
|
|
|
|
rm -rf dlib/external
|
|
|
|
'';
|
|
|
|
|
2019-03-03 13:21:04 +00:00
|
|
|
cmakeFlags = [ "-DUSE_AVX_INSTRUCTIONS=${if avxSupport then "yes" else "no"}" ];
|
|
|
|
|
2014-10-07 06:36:30 +01:00
|
|
|
enableParallelBuilding = true;
|
2017-09-03 13:22:13 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2018-06-17 18:33:14 +01:00
|
|
|
buildInputs = [ libpng libjpeg ] ++ lib.optional guiSupport libX11;
|
2014-10-07 06:36:30 +01:00
|
|
|
|
2014-10-10 00:18:42 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "A general purpose cross-platform C++ machine learning library";
|
2014-10-07 06:36:30 +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
|
|
|
};
|
|
|
|
}
|