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

32 lines
820 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, libpng, libjpeg
2017-09-03 12:22:13 +00:00
, guiSupport ? false, libX11
}:
stdenv.mkDerivation rec {
version = "19.16";
name = "dlib-${version}";
2017-03-12 16:15:38 +00:00
src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
sha256 = "0ix52npsxfm6324jli7y0zkyijl5yirv2yzfncyd4sq0r9fcwb4p";
};
2017-09-03 12:22:13 +00:00
postPatch = ''
rm -rf dlib/external
'';
enableParallelBuilding = true;
2017-09-03 12:22:13 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ 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 ma27 ];
2018-03-17 16:34:32 +00:00
platforms = platforms.linux;
};
}