-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(klipper): package camera-streamer
- Loading branch information
1 parent
337c892
commit afa2a02
Showing
6 changed files
with
165 additions
and
35 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
sources, | ||
cmake, | ||
noServer ? true, | ||
noTests ? true, | ||
... | ||
}: let | ||
inherit (lib) optional; | ||
in | ||
stdenv.mkDerivation rec { | ||
pname = "libjuice"; | ||
|
||
inherit (sources.libjuice) version src; | ||
|
||
cmakeFlags = | ||
[ | ||
] | ||
++ optional noServer "-DNO_SERVER=ON" | ||
++ optional noTests "-DNO_TESTS=ON"; | ||
|
||
nativeBuildInputs = [cmake]; | ||
|
||
meta = with lib; { | ||
description = "JUICE is a UDP Interactive Connectivity Establishment library"; | ||
homepage = "https://github.com/paullouisageneau/libjuice/tree/06bbfe93ab344e95797220d89b55c7204c3ffa9d"; | ||
platforms = platforms.linux; | ||
license = licenses.gpl3Only; | ||
}; | ||
} |
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