fishPlugins.puffer: init at unstable-2022-10-07

This commit is contained in:
Quantenzitrone 2022-12-30 13:59:18 +01:00
parent bb0949f4e2
commit 7066d039cf
2 changed files with 22 additions and 0 deletions

View File

@ -32,6 +32,8 @@ lib.makeScope newScope (self: with self; {
pisces = callPackage ./pisces.nix { };
puffer = callPackage ./puffer.nix { };
pure = callPackage ./pure.nix { };
sponge = callPackage ./sponge.nix { };

View File

@ -0,0 +1,20 @@
{ lib, buildFishPlugin, fetchFromGitHub }:
buildFishPlugin rec {
pname = "puffer";
version = "unstable-2022-10-07";
src = fetchFromGitHub {
owner = "nickeb96";
repo = "puffer-fish";
rev = "fd0a9c95da59512beffddb3df95e64221f894631";
hash = "sha256-aij48yQHeAKCoAD43rGhqW8X/qmEGGkg8B4jSeqjVU0=";
};
meta = with lib; {
description = "Text Expansions for Fish";
homepage = "https://github.com/nickeb96/puffer-fish";
license = licenses.mit;
maintainers = with maintainers; [ quantenzitrone ];
};
}