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

26 lines
636 B
Nix
Raw Normal View History

2017-03-12 16:15:38 +00:00
{ stdenv, fetchFromGitHub, cmake, xlibsWrapper }:
stdenv.mkDerivation rec {
2017-03-12 16:15:38 +00:00
version = "19.4";
name = "dlib-${version}";
2017-03-12 16:15:38 +00:00
src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
sha256 = "0zqa36i4s5i7n6284sp22qrhm3k37n9vqmpz068nm02vj9h0a2j4";
};
enableParallelBuilding = true;
2017-03-12 16:15:38 +00:00
nativeBuildInputs = [ cmake ];
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;
};
}