39b5325a66
Diff: https://github.com/taskflow/taskflow/compare/v3.5.0...v3.6.0 Changelog: https://taskflow.github.io/taskflow/release-3-6-0.html
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, doctest
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "taskflow";
|
|
version = "3.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "taskflow";
|
|
repo = "taskflow";
|
|
rev = "v${version}";
|
|
hash = "sha256-Iy9BhkyJa2nFxwVXb4LAlgVAHnu+58Ago2eEgAIlZ7M=";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./unvendor-doctest.patch;
|
|
inherit doctest;
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
rm -r 3rd-party
|
|
|
|
# tries to use x86 intrinsics on aarch64-darwin
|
|
sed -i '/^#if __has_include (<immintrin\.h>)/,/^#endif/d' taskflow/utility/os.hpp
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "General-purpose Parallel and Heterogeneous Task Programming System";
|
|
homepage = "https://taskflow.github.io/";
|
|
changelog = let
|
|
release = lib.replaceStrings ["."] ["-"] version;
|
|
in "https://taskflow.github.io/taskflow/release-${release}.html";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|