Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: Move materialyoucolor to dedicated package

+24 -9
+1 -9
modules/home/de/hyprland/bars/ags/default.nix
··· 16 16 config = 17 17 let 18 18 pythonWithMaterialYouColor = (pkgs.python311.withPackages (p: with p; [ 19 - (buildPythonPackage rec { 20 - pname = "materialyoucolor"; 21 - version = "2.0.9"; 22 - src = fetchPypi { 23 - inherit pname version; 24 - sha256 = "sha256-J35//h3tWn20f5ej6OXaw4NKnxung9q7m0E4Zf9PUw4="; 25 - }; 26 - doCheck = false; 27 - }) 19 + pkgs.lpchaim."pythonPackages.materialyoucolor" 28 20 # material-color-utilities 29 21 pywayland 30 22 setproctitle
+23
packages/pythonPackages.materialyoucolor/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , python3Packages 4 + , ... 5 + }: 6 + 7 + python3Packages.buildPythonPackage rec { 8 + pname = "materialyoucolor"; 9 + version = "2.0.9"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "sha256-J35//h3tWn20f5ej6OXaw4NKnxung9q7m0E4Zf9PUw4="; 14 + }; 15 + 16 + doCheck = false; 17 + 18 + meta = { 19 + homepage = "https://github.com/T-Dynamos/materialyoucolor-python"; 20 + license = lib.licenses.mit; 21 + maintainers = with lib.maintainers; [ lpchaim ]; 22 + }; 23 + }