mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
fishPlugins.spark: init at 1.2.0
This commit is contained in:
parent
7d0c987cea
commit
2a8b6e9721
@ -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 { };
|
||||
|
26
pkgs/shells/fish/plugins/spark.nix
Normal file
26
pkgs/shells/fish/plugins/spark.nix
Normal 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
|
Loading…
Reference in New Issue
Block a user