about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/dlib
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/dlib')
-rw-r--r--nixpkgs/pkgs/development/libraries/dlib/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/dlib/default.nix b/nixpkgs/pkgs/development/libraries/dlib/default.nix
new file mode 100644
index 000000000000..dfa5509fb98e
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/dlib/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, libpng, libjpeg
+, guiSupport ? false, libX11
+
+  # see http://dlib.net/compile.html
+, avxSupport ? true
+}:
+
+stdenv.mkDerivation rec {
+  pname = "dlib";
+  version = "19.17";
+
+  src = fetchFromGitHub {
+    owner = "davisking";
+    repo = "dlib";
+    rev ="v${version}";
+    sha256 = "0g11ilma6cll3bd2ahm66j1sjb9v4rxz3xjbfkcg5pjsvb49n029";
+  };
+
+  postPatch = ''
+    rm -rf dlib/external
+  '';
+
+  cmakeFlags = [ "-DUSE_AVX_INSTRUCTIONS=${if avxSupport then "yes" else "no"}" ];
+
+  enableParallelBuilding = true;
+  nativeBuildInputs = [ cmake pkgconfig ];
+  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;
+  };
+}