fishPlugins.spark: init at 1.2.0

This commit is contained in:
Théo Bori 2024-11-18 19:14:47 +01:00
parent 7d0c987cea
commit 2a8b6e9721
No known key found for this signature in database
GPG Key ID: BDD57BE99D555965
2 changed files with 28 additions and 0 deletions

View File

@ -62,6 +62,8 @@ lib.makeScope newScope (self: with self; {
sdkman-for-fish = callPackage ./sdkman-for-fish.nix { };
spark = callPackage ./spark.nix { };
sponge = callPackage ./sponge.nix { };
tide = callPackage ./tide.nix { };

View File

@ -0,0 +1,26 @@
{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
let
self = buildFishPlugin {
pname = "spark";
version = "1.2.0";
src = fetchFromGitHub {
owner = "jorgebucaran";
repo = "spark.fish";
rev = "refs/tags/${self.version}";
hash = "sha256-AIFj7lz+QnqXGMBCfLucVwoBR3dcT0sLNPrQxA5qTuU=";
};
meta = {
description = "Sparklines for Fish";
homepage = "https://github.com/jorgebucaran/spark.fish";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ theobori ];
};
};
in
self