Merge pull request #208360 from Quantenzitrone/puffer
closes https://github.com/NixOS/nixpkgs/pull/164764
This commit is contained in:
commit
a417fae3df
2 changed files with 22 additions and 0 deletions
|
@ -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 { };
|
||||
|
|
20
pkgs/shells/fish/plugins/puffer.nix
Normal file
20
pkgs/shells/fish/plugins/puffer.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue