This commit is contained in:
alsaiduq-lab 2025-03-16 03:05:52 -06:00
parent de4de77a87
commit b4cf61bc23
25 changed files with 287 additions and 100 deletions

11
pkgs/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {}, lib ? pkgs.lib }:
{
fish-rust = pkgs.callPackage ./fish-rust {};
pythonPackages = {
rembg = pkgs.callPackage ./python-packages/rembg.nix {
inherit (pkgs) lib stdenv fetchFromGitHub fetchPypi python310;
inherit (pkgs.python310.pkgs) numpy pillow opencv4 requests onnxruntime;
};
};
}