updated caching and settings

This commit is contained in:
alsaiduq-lab 2025-03-20 22:56:58 -06:00
parent 3e8e5ba6df
commit 3c187d3bfc
3 changed files with 10 additions and 14 deletions

View file

@ -47,7 +47,7 @@ in {
greeters.gtk = { greeters.gtk = {
enable = true; enable = true;
theme = { theme = {
package = customPkgs.tokyo-night-gtk; package = pkgs.tokyonight-gtk-theme;
name = "Tokyonight-Storm"; name = "Tokyonight-Storm";
}; };
iconTheme = { iconTheme = {
@ -105,8 +105,9 @@ in {
numix-icon-theme-circle numix-icon-theme-circle
candy-icons candy-icons
capitaine-cursors capitaine-cursors
tokyonight-gtk-theme
nix-prefetch-git
] ++ (with customPkgs; [ ] ++ (with customPkgs; [
tokyo-night-gtk
vivid-icons vivid-icons
]); ]);

View file

@ -2,8 +2,8 @@
pkgs ? import <nixpkgs> {}, pkgs ? import <nixpkgs> {},
lib ? pkgs.lib, lib ? pkgs.lib,
}: let }: let
python-opencv-headless = pkgs.callPackage ./python-opencv-headless { python-opencv-headless = pkgs.callPackage ./python-opencv-headless {
inherit (pkgs) lib fetchPypi; inherit (pkgs) lib fetchurl;
python310Packages = pkgs.python310.pkgs; python310Packages = pkgs.python310.pkgs;
}; };

View file

@ -1,19 +1,16 @@
{ lib { lib
, python310Packages , python310Packages
, fetchPypi , fetchurl
}: }:
python310Packages.buildPythonPackage rec { python310Packages.buildPythonPackage rec {
pname = "opencv-python-headless"; pname = "opencv-python-headless";
version = "4.9.0.80"; version = "4.11.0.86";
format = "wheel"; format = "wheel";
src = fetchPypi { src = fetchurl {
inherit pname version format; url = "https://files.pythonhosted.org/packages/dd/5c/c139a7876099916879609372bfa513b7f1257f7f1a908b0bdc1c2328241b/opencv_python_headless-4.11.0.86-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl";
dist = "cp310"; sha256 = "0yx58bpwl6bcsq3ikv5jzffvxyv663jcyxj9z7ghvx6ikp0jf2hf";
abi = "cp310";
platform = "manylinux_2_17_x86_64.manylinux2014_x86_64";
hash = "sha256-a1uEcgIUu7qxcJCyX+4umIOGa4bsRdfgSBn6jO0PnoM=";
}; };
propagatedBuildInputs = with python310Packages; [ propagatedBuildInputs = with python310Packages; [
@ -22,8 +19,6 @@ python310Packages.buildPythonPackage rec {
doCheck = false; doCheck = false;
pythonImportsCheck = [ "cv2" ];
meta = with lib; { meta = with lib; {
description = "Wrapper package for OpenCV python bindings"; description = "Wrapper package for OpenCV python bindings";
homepage = "https://github.com/opencv/opencv-python"; homepage = "https://github.com/opencv/opencv-python";