catppuccinifier-cli: init at 8.0.0

This commit is contained in:
aleksana 2024-05-17 19:41:02 +08:00
parent 5fd8536a9a
commit d876fbad65
2 changed files with 1630 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,34 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "catppuccinifier-cli";
version = "8.0.0";
src = fetchFromGitHub {
owner = "lighttigerXIV";
repo = "catppuccinifier";
rev = version;
hash = "sha256-CEjdCr7QgyQw+1VmeEyt95R0HKE0lAKZHrwahaxgJoU=";
};
sourceRoot = "${src.name}/src/catppuccinifier-cli";
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"catppuccinifier-rs-0.1.0" = "sha256-/lwc5cqLuCvGwcCiEHlYkbQZlS13z40OFVl26tpjsTQ=";
};
};
meta = {
description = "Apply catppuccin flavors to your wallpapers";
homepage = "https://github.com/lighttigerXIV/catppuccinifier";
license = lib.licenses.mit;
mainProgram = "catppuccinifier-cli";
maintainers = with lib.maintainers; [ aleksana isabelroses ];
platforms = with lib.platforms; linux ++ windows;
};
}