dput-ng: fix eval (#364540)
[NixPkgs.git] / pkgs / by-name / ca / catppuccin-whiskers / package.nix
blob2f69b8cd504e6e06816ce0770cd5e3a4959cfa5c
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
6 let
7   version = "2.5.1";
8 in
9 rustPlatform.buildRustPackage {
10   pname = "catppuccin-whiskers";
11   inherit version;
13   src = fetchFromGitHub {
14     owner = "catppuccin";
15     repo = "whiskers";
16     rev = "refs/tags/v${version}";
17     hash = "sha256-OLEXy9MCrPQu1KWICsYhe/ayVqxkYIFwyJoJhgiNDz4=";
18   };
20   cargoHash = "sha256-5FvW+ioeDi0kofDswyQpUC21wbEZM8TAeUEUemnNfnA=";
22   meta = {
23     homepage = "https://github.com/catppuccin/whiskers";
24     description = "A templating tool to simplify the creation of Catppuccin ports";
25     license = lib.licenses.mit;
26     maintainers = with lib.maintainers; [ Name ];
27     mainProgram = "whiskers";
28   };