-
-
Notifications
You must be signed in to change notification settings - Fork 15.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cctag: init at 1.0.3 #216402
Merged
Merged
cctag: init at 1.0.3 #216402
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
pkgs/development/libraries/cctag/cmake-install-include-dir.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/src/CMakeLists.txt | ||
+++ b/src/CMakeLists.txt | ||
@@ -209,7 +209,7 @@ | ||
target_include_directories(CCTag | ||
PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}>" | ||
"$<BUILD_INTERFACE:${generated_dir}>" | ||
- "$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/${CMAKE_INSTALL_INCLUDEDIR}>" | ||
+ "$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>" | ||
PUBLIC ${Boost_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS}) | ||
|
||
# just for testing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromGitHub | ||
|
||
, cmake | ||
, boost | ||
, eigen | ||
, opencv | ||
, tbb | ||
|
||
, avx2Support ? stdenv.hostPlatform.avx2Support | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "cctag"; | ||
version = "1.0.3"; | ||
|
||
outputs = [ "lib" "dev" "out" ]; | ||
|
||
src = fetchFromGitHub { | ||
owner = "alicevision"; | ||
repo = "CCTag"; | ||
rev = "v${version}"; | ||
hash = "sha256-foB+e7BCuUucyhN8FsI6BIT3/fsNLTjY6QmjkMWZu6A="; | ||
}; | ||
|
||
cmakeFlags = [ | ||
# Feel free to create a PR to add CUDA support | ||
"-DCCTAG_WITH_CUDA=OFF" | ||
|
||
"-DCCTAG_ENABLE_SIMD_AVX2=${if avx2Support then "ON" else "OFF"}" | ||
|
||
"-DCCTAG_BUILD_TESTS=${if doCheck then "ON" else "OFF"}" | ||
"-DCCTAG_BUILD_APPS=OFF" | ||
]; | ||
|
||
patches = [ | ||
./cmake-install-include-dir.patch | ||
davidak marked this conversation as resolved.
Show resolved
Hide resolved
|
||
]; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
]; | ||
|
||
propagatedBuildInputs = [ | ||
tbb | ||
]; | ||
|
||
buildInputs = [ | ||
boost | ||
eigen | ||
opencv | ||
]; | ||
|
||
# Tests are broken on Darwin (linking issue) | ||
doCheck = !stdenv.isDarwin; | ||
|
||
meta = with lib; { | ||
description = "Detection of CCTag markers made up of concentric circles"; | ||
homepage = "https://cctag.readthedocs.io"; | ||
hesiod marked this conversation as resolved.
Show resolved
Hide resolved
|
||
downloadPage = "https://github.com/alicevision/CCTag"; | ||
license = licenses.mpl20; | ||
platforms = platforms.all; | ||
davidak marked this conversation as resolved.
Show resolved
Hide resolved
|
||
maintainers = with maintainers; [ tmarkus ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that really a good idea?
cctag.out
is empty (it's only included because some hooks complain otherwise).cctag.lib
really is the main binary output.If
cctag.lib
were to go first, building cctag would default to an empty output which would be somewhat counterintuitive.Not sure if there are any policies surrounding this other than "binaries should go first"