nixpkgs/pkgs/development/libraries/dlib/default.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, libpng, libjpeg
2017-09-03 14:22:13 +02:00
, guiSupport ? false, libX11
# see http://dlib.net/compile.html
, avxSupport ? true
, cudaSupport ? true
2017-09-03 14:22:13 +02:00
}:
stdenv.mkDerivation rec {
pname = "dlib";
version = "19.20";
2017-03-12 17:15:38 +01:00
src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
sha256 = "10b5hrprlls0nhljx18ys8cms7bgqirvhxlx6gbvbprbi6q16f9r";
};
2017-09-03 14:22:13 +02:00
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"}" ];
enableParallelBuilding = true;
2017-09-03 14:22:13 +02:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libpng libjpeg ] ++ lib.optional guiSupport libX11;
meta = with stdenv.lib; {
2014-11-11 14:20:43 +01:00
description = "A general purpose cross-platform C++ machine learning library";
homepage = "http://www.dlib.net";
2017-03-12 17:15:38 +01:00
license = licenses.boost;
maintainers = with maintainers; [ christopherpoole ma27 ];
2018-03-17 17:34:32 +01:00
platforms = platforms.linux;
};
}