diff options
Diffstat (limited to 'Biz/Kidcam.nix')
| -rw-r--r-- | Biz/Kidcam.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Biz/Kidcam.nix b/Biz/Kidcam.nix new file mode 100644 index 0000000..f12a8d5 --- /dev/null +++ b/Biz/Kidcam.nix @@ -0,0 +1,20 @@ +{ pkgs ? import <nixpkgs> { } }: + +# Development environment only. +# Actual deployment is Ubuntu 20.04 + JetPack 4.6.x on Jetson Nano. +# Jetson Nano is unsupported on NixOS. + +pkgs.python3Packages.buildPythonApplication { + pname = "kidcam"; + version = "0.1.0"; + src = ./.; + + propagatedBuildInputs = with pkgs.python3Packages; [ + # Add dependencies as needed + ]; + + meta = { + description = "Motion-activated streaming camera for family"; + platforms = pkgs.lib.platforms.linux; + }; +} |
