mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
fishPlugins.pisces: init at 0.7.0
This commit is contained in:
parent
9f449eaf24
commit
16c2bce1fb
2 changed files with 22 additions and 0 deletions
|
@ -19,6 +19,8 @@ lib.makeScope newScope (self: with self; {
|
|||
|
||||
fzf-fish = callPackage ./fzf-fish.nix { };
|
||||
|
||||
pisces = callPackage ./pisces.nix { };
|
||||
|
||||
pure = callPackage ./pure.nix { };
|
||||
|
||||
})
|
||||
|
|
20
pkgs/shells/fish/plugins/pisces.nix
Normal file
20
pkgs/shells/fish/plugins/pisces.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildFishPlugin, fetchFromGitHub }:
|
||||
|
||||
buildFishPlugin rec {
|
||||
pname = "pisces";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "laughedelic";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Oou2IeNNAqR00ZT3bss/DbhrJjGeMsn9dBBYhgdafBw=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Paired symbols in the command line";
|
||||
homepage = "https://github.com/laughedelic/pisces";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ vanilla ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue