7ec4573f4c
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 19.10 with grep in /nix/store/3h9m66pcyc428v616z3ls200aidd12wz-dlib-19.10 - directory tree listing: https://gist.github.com/7c3e568146e46ccdaed28be2916bd0a9
33 lines
833 B
Nix
33 lines
833 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, openblas, libpng, libjpeg
|
|
, guiSupport ? false, libX11
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "19.10";
|
|
name = "dlib-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davisking";
|
|
repo = "dlib";
|
|
rev ="v${version}";
|
|
sha256 = "0sgxblf4n33b8wgblyblmrkwydvy1yh7fzll1b6c4zgkz675w0m5";
|
|
};
|
|
|
|
postPatch = ''
|
|
rm -rf dlib/external
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs = [ openblas 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 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|
|
|