depot/pkgs/by-name/ca/catppuccin-whiskers/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

23 lines
674 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
let version = "2.5.1";
in rustPlatform.buildRustPackage {
pname = "catppuccin-whiskers";
inherit version;
src = fetchFromGitHub {
owner = "catppuccin";
repo = "whiskers";
rev = "refs/tags/v${version}";
hash = "sha256-OLEXy9MCrPQu1KWICsYhe/ayVqxkYIFwyJoJhgiNDz4=";
};
cargoHash = "sha256-5FvW+ioeDi0kofDswyQpUC21wbEZM8TAeUEUemnNfnA=";
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";
};
}