Skip to content
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

nix: fix build of dependencies #187

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion nix/deps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ rec {
sha256 = "17gwhwhih4737wzm24c45y3ch69jzw2mi8prj1pdlxff8f1pki8v";
};
nativeBuildInputs = [ cmake ];
cmakeFlags="-DJUST_INSTALL_CEREAL=true";
cmakeFlags = [
"-DJUST_INSTALL_CEREAL=true"
];
meta = with lib; {
homepage = "http://uscilab.github.io/cereal";
description = "A C++11 library for serialization";
Expand All @@ -34,6 +36,10 @@ rec {
};
dontUseCmakeBuildDir = true;
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-Dimmer_BUILD_TESTS=OFF"
"-Dimmer_BUILD_EXAMPLES=OFF"
];
meta = with lib; {
homepage = "http://sinusoid.es/immer";
description = "Immutable data structures for C++";
Expand All @@ -53,6 +59,10 @@ rec {
};
nativeBuildInputs = [ cmake ];
dontUseCmakeBuildDir = true;
cmakeFlags = [
"-Dzug_BUILD_TESTS=OFF"
"-Dzug_BUILD_EXAMPLES=OFF"
];
meta = with lib; {
homepage = "http://sinusoid.es/zug";
description = "Transducers for C++";
Expand Down
Loading