-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,427 additions
and
55 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -1,14 +1,8 @@ | ||
cpc-daemon (4.5.2) unstable; urgency=medium | ||
cpc-daemon (4.6.0) unstable; urgency=medium | ||
|
||
* See https://github.com/SiliconLabs/cpc-daemon/releases/tag/v4.5.2 | ||
* See https://github.com/SiliconLabs/cpc-daemon/releases/tag/v4.6.0 | ||
|
||
-- Alexandre Autotte <[email protected]> Thu, 5 Sep 2024 8:53:00 -0400 | ||
|
||
cpc-daemon (4.5.1) unstable; urgency=medium | ||
|
||
* See https://github.com/SiliconLabs/cpc-daemon/releases/tag/v4.5.1 | ||
|
||
-- Alexandre Autotte <[email protected]> Thu, 11 Jul 2024 16:45:00 -0400 | ||
-- Issam Maghni <[email protected]> Fri, 22 Nov 2024 16:17:00 -0400 | ||
|
||
cpc-daemon (4.5.0) unstable; urgency=medium | ||
|
||
|
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,48 @@ | ||
{ | ||
stdenv, | ||
lib, | ||
nix-gitignore, | ||
cmake, | ||
pkg-config, | ||
protobuf, | ||
mbedtls, | ||
unitySrc ? null, | ||
libprotobufMutatorSrc ? null, | ||
}: | ||
stdenv.mkDerivation rec { | ||
pname = "cpc-daemon"; | ||
version = "4.6.0"; | ||
|
||
src = nix-gitignore.gitignoreSource [ ] ./.; | ||
doCheck = (unitySrc != null) && (libprotobufMutatorSrc != null); | ||
separateDebugInfo = doCheck; | ||
|
||
nativeBuildInputs = [ | ||
cmake | ||
pkg-config | ||
]; | ||
nativeCheckInputs = [ protobuf ]; | ||
buildInputs = [ mbedtls ]; | ||
checkInputs = [ protobuf ]; | ||
|
||
cmakeBuildType = "RelWithDebInfo"; | ||
cmakeFlags = | ||
with lib.strings; | ||
[ | ||
(cmakeBool "CMAKE_COMPILE_WARNING_AS_ERROR" doCheck) | ||
(cmakeBool "BUILD_TESTING" doCheck) | ||
] | ||
++ lib.optionals doCheck [ | ||
(cmakeOptionType "path" "UNITY_DIR" unitySrc.outPath) | ||
(cmakeOptionType "path" "LIBPROTOBUF_MUTATOR_DIR" libprotobufMutatorSrc.outPath) | ||
]; | ||
|
||
meta = with lib; { | ||
description = "CPC daemon"; | ||
homepage = "https://github.com/SiliconLabs/cpc-daemon"; | ||
license = "MSLA"; | ||
maintainers = [ "iemaghni" ]; | ||
platform = platforms.linux; | ||
mainProgram = "cpcd"; | ||
}; | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.