mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
Merge pull request #317021 from NamesCode/add-whiskers
catppuccin-whiskers: init at 2.4.0
This commit is contained in:
commit
df9ddccfeb
2 changed files with 29 additions and 0 deletions
|
@ -13874,6 +13874,12 @@
|
|||
githubId = 1009523;
|
||||
name = "Ashijit Pramanik";
|
||||
};
|
||||
Name = {
|
||||
name = "Name";
|
||||
email = "lasagna@garfunkles.space";
|
||||
github = "namescode";
|
||||
githubId = 86119896;
|
||||
};
|
||||
name-snrl = {
|
||||
github = "name-snrl";
|
||||
githubId = 72071763;
|
||||
|
|
23
pkgs/by-name/ca/catppuccin-whiskers/package.nix
Normal file
23
pkgs/by-name/ca/catppuccin-whiskers/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue