mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
100 lines
2.2 KiB
Nix
100 lines
2.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
libpng,
|
|
libjpeg,
|
|
libwebp,
|
|
blas,
|
|
lapack,
|
|
config,
|
|
guiSupport ? false,
|
|
libX11,
|
|
enableShared ? !stdenv.hostPlatform.isStatic, # dlib has a build system that forces the user to choose between either shared or static libraries. See https://github.com/davisking/dlib/issues/923#issuecomment-2175865174
|
|
sse4Support ? stdenv.hostPlatform.sse4_1Support,
|
|
avxSupport ? stdenv.hostPlatform.avxSupport,
|
|
cudaSupport ? config.cudaSupport,
|
|
cudaPackages,
|
|
}@inputs:
|
|
(if cudaSupport then cudaPackages.backendStdenv else inputs.stdenv).mkDerivation rec {
|
|
pname = "dlib";
|
|
version = "19.24.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davisking";
|
|
repo = "dlib";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-BpE7ZrtiiaDqwy1G4IHOQBJMr6sAadFbRxsdObs1SIY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
rm -rf dlib/external
|
|
'';
|
|
|
|
cmakeFlags =
|
|
[
|
|
(lib.cmakeBool "BUILD_SHARED_LIBS" enableShared)
|
|
(lib.cmakeBool "USE_SSE4_INSTRUCTIONS" sse4Support)
|
|
(lib.cmakeBool "USE_AVX_INSTRUCTIONS" avxSupport)
|
|
(lib.cmakeBool "DLIB_USE_CUDA" cudaSupport)
|
|
]
|
|
++ lib.optionals cudaSupport [
|
|
(lib.cmakeFeature "DLIB_USE_CUDA_COMPUTE_CAPABILITIES" (
|
|
builtins.concatStringsSep "," (with cudaPackages.flags; map dropDot cudaCapabilities)
|
|
))
|
|
];
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
cmake
|
|
pkg-config
|
|
]
|
|
++ lib.optionals cudaSupport (
|
|
with cudaPackages;
|
|
[
|
|
cuda_nvcc
|
|
]
|
|
);
|
|
|
|
buildInputs =
|
|
[
|
|
libpng
|
|
libjpeg
|
|
libwebp
|
|
blas
|
|
lapack
|
|
]
|
|
++ lib.optionals guiSupport [ libX11 ]
|
|
++ lib.optionals cudaSupport (
|
|
with cudaPackages;
|
|
[
|
|
cuda_cudart
|
|
cuda_nvcc
|
|
libcublas
|
|
libcurand
|
|
libcusolver
|
|
cudnn
|
|
cuda_cccl
|
|
]
|
|
);
|
|
|
|
passthru = {
|
|
inherit
|
|
cudaSupport
|
|
cudaPackages
|
|
sse4Support
|
|
avxSupport
|
|
;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "General purpose cross-platform C++ machine learning library";
|
|
homepage = "http://www.dlib.net";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ christopherpoole ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|