depot/third_party/nixpkgs/pkgs/by-name/ca/catppuccin-whiskers/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

30 lines
703 B
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
}:
let
version = "2.5.1";
in
rustPlatform.buildRustPackage {
pname = "catppuccin-whiskers";
inherit version;
src = fetchFromGitHub {
owner = "catppuccin";
repo = "whiskers";
tag = "v${version}";
hash = "sha256-OLEXy9MCrPQu1KWICsYhe/ayVqxkYIFwyJoJhgiNDz4=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-CVg7kcOTRa8KfDwiJHQhTPQfK6g3jOMa4h/BCUo3ehw=";
meta = {
homepage = "https://github.com/catppuccin/whiskers";
description = "A templating tool to simplify the creation of Catppuccin ports";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Name ];
mainProgram = "whiskers";
};
}