This commit is contained in:
alsaiduq-lab 2025-03-16 13:38:47 -06:00
parent 4d736ca028
commit 9b30b99383
3 changed files with 41 additions and 4 deletions

View file

@ -1,9 +1,17 @@
{ pkgs ? import <nixpkgs> {}, lib ? pkgs.lib }:
{
fish-rust = pkgs.callPackage ./fish-rust {};
python-rembg = pkgs.callPackage ./python-rembg {
let
python-pymatting = pkgs.callPackage ./python-pymatting {
inherit (pkgs) lib fetchPypi;
python310Packages = pkgs.python310.pkgs;
};
in
{
fish-rust = pkgs.callPackage ./fish-rust {};
python-pymatting = python-pymatting;
python-rembg = pkgs.callPackage ./python-rembg {
inherit (pkgs) lib fetchPypi;
python310Packages = pkgs.python310.pkgs;
inherit python-pymatting;
};
}