catppuccin-whiskers: init at 2.4.0

This commit is contained in:
Name 2024-06-03 22:13:46 +01:00
parent 47df37bb0e
commit a7fdc4dceb
No known key found for this signature in database
GPG Key ID: 9299A9FB9CCE0808

View File

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, rustPlatform }:
let version = "2.4.0";
in rustPlatform.buildRustPackage {
pname = "catppuccin-whiskers";
inherit version;
src = fetchFromGitHub {
owner = "catppuccin";
repo = "whiskers";
rev = "refs/tags/v${version}";
hash = "sha256-rbPr5eSs99nS70J785SWO7tVBdiX/S7XUNHuo3aOQU4=";
};
cargoHash = "sha256-T7dreELSHfJizfbJEvvgkOmkMwlOETZVUdLwRFJOJEo=";
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";
};
}