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

33 lines
832 B
Nix
Raw Normal View History

2017-09-03 13:22:13 +01:00
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, openblas, libpng, libjpeg
, guiSupport ? false, libX11
}:
stdenv.mkDerivation rec {
2017-12-28 00:03:27 +00:00
version = "19.8";
name = "dlib-${version}";
2017-03-12 16:15:38 +00:00
src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
2017-12-28 00:03:27 +00:00
sha256 = "0ras4dl1ws9f9680bi8wg0mnbqvrpn0l2xl5lrvq3jvnijb3cz9i";
};
2017-09-03 13:22:13 +01:00
postPatch = ''
rm -rf dlib/external
'';
enableParallelBuilding = true;
2017-09-03 13:22:13 +01:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ openblas libpng libjpeg ] ++ lib.optional guiSupport libX11;
meta = with stdenv.lib; {
2014-11-11 13:20:43 +00:00
description = "A general purpose cross-platform C++ machine learning library";
homepage = http://www.dlib.net;
2017-03-12 16:15:38 +00:00
license = licenses.boost;
maintainers = with maintainers; [ christopherpoole ];
2017-03-12 16:15:38 +00:00
platforms = platforms.all;
};
}