1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/shells/fish/plugins/puffer.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
502 B
Nix
Raw Normal View History

{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "puffer";
version = "1.0.0";
src = fetchFromGitHub {
owner = "nickeb96";
repo = "puffer-fish";
rev = "v${version}";
hash = "sha256-2niYj0NLfmVIQguuGTA7RrPIcorJEPkxhH6Dhcy+6Bk=";
};
meta = {
description = "Text Expansions for Fish";
homepage = "https://github.com/nickeb96/puffer-fish";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ quantenzitrone ];
};
}