catppuccin-catwalk: init at 0.4.0
This commit is contained in:
parent
1ccdb33cf4
commit
1a5e7012a0
36
pkgs/development/tools/misc/catppuccin-catwalk/default.nix
Normal file
36
pkgs/development/tools/misc/catppuccin-catwalk/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, python3
|
||||
,
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "catppuccin-catwalk";
|
||||
version = "0.4.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "catppuccin_catwalk";
|
||||
hash = "sha256-5TAw5H3soxe9vLhfj1qs8uMr4ybrHlCj4zdsMzvPo6s=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
pillow
|
||||
];
|
||||
|
||||
pythonImports = [
|
||||
"catwalk"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/catppuccin/toolbox";
|
||||
description = "A CLI for Catppuccin that takes in four showcase images and displays them all at once";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ryanccn ];
|
||||
};
|
||||
}
|
@ -411,6 +411,8 @@ with pkgs;
|
||||
|
||||
catatonit = callPackage ../applications/virtualization/catatonit { };
|
||||
|
||||
catppuccin-catwalk = callPackage ../development/tools/misc/catppuccin-catwalk { };
|
||||
|
||||
catppuccin-gtk = callPackage ../data/themes/catppuccin-gtk { };
|
||||
|
||||
catppuccin-kde = callPackage ../data/themes/catppuccin-kde { };
|
||||
|
Loading…
Reference in New Issue
Block a user