Initial commit

This commit is contained in:
2023-01-06 14:46:11 -08:00
commit e240b33b77
14 changed files with 617 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, lib, ... }:
pkgs.stdenv.mkDerivation {
name = "objectifier";
src = ./src;
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out
cp $src/detector.py $out/detector.py
cp $src/yolo-cli.py $out/objectifier.py
'';
}