29 lines
822 B
Nix
29 lines
822 B
Nix
{
|
|
pkgs ? import <nixpkgs> {},
|
|
lib ? pkgs.lib,
|
|
}: let
|
|
python-opencv-headless = pkgs.callPackage ./python-opencv-headless {
|
|
inherit (pkgs) lib fetchurl;
|
|
python311Packages = pkgs.python311.pkgs;
|
|
};
|
|
|
|
python-pymatting = pkgs.callPackage ./python-pymatting {
|
|
inherit (pkgs) lib fetchPypi;
|
|
python311Packages = pkgs.python311.pkgs;
|
|
};
|
|
|
|
python-rembg = pkgs.callPackage ./python-rembg {
|
|
inherit (pkgs) lib fetchPypi;
|
|
inherit python-pymatting python-opencv-headless;
|
|
python311Packages = pkgs.python311.pkgs;
|
|
};
|
|
in {
|
|
fish-rust = pkgs.callPackage ./fish-rust {};
|
|
python-pymatting = python-pymatting;
|
|
python-opencv-headless = python-opencv-headless;
|
|
python-rembg = python-rembg;
|
|
|
|
vivid-icons = pkgs.callPackage ./vivid-icons {
|
|
inherit (pkgs) lib stdenv fetchFromGitHub;
|
|
};
|
|
}
|