fishPlugins.autopair-fish: remove in favor of fishPlugins.autopair
This commit is contained in:
parent
678e2fe30e
commit
fad7304030
3 changed files with 4 additions and 24 deletions
|
@ -1,20 +0,0 @@
|
|||
{ lib, stdenv, buildFishPlugin, fetchFromGitHub }:
|
||||
|
||||
buildFishPlugin rec {
|
||||
pname = "autopair.fish";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jorgebucaran";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Auto-complete matching pairs in the Fish command line.";
|
||||
homepage = "https://github.com/jorgebucaran/autopair.fish";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ thehedgeh0g ];
|
||||
};
|
||||
}
|
|
@ -15,6 +15,6 @@ buildFishPlugin rec {
|
|||
description = "Auto-complete matching pairs in the Fish command line";
|
||||
homepage = "https://github.com/jorgebucaran/autopair.fish";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kidonng ];
|
||||
maintainers = with maintainers; [ kidonng thehedgeh0g ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
{ lib, newScope }:
|
||||
{ lib, newScope, config }:
|
||||
|
||||
lib.makeScope newScope (self: with self; {
|
||||
autopair = callPackage ./autopair.nix { };
|
||||
|
||||
autopair-fish = callPackage ./autopair-fish.nix { };
|
||||
|
||||
buildFishPlugin = callPackage ./build-fish-plugin.nix { };
|
||||
|
||||
colored-man-pages = callPackage ./colored-man-pages.nix { };
|
||||
|
@ -41,4 +39,6 @@ lib.makeScope newScope (self: with self; {
|
|||
sponge = callPackage ./sponge.nix { };
|
||||
|
||||
tide = callPackage ./tide.nix { };
|
||||
} // lib.optionalAttrs config.allowAliases {
|
||||
autopair-fish = self.autopair; # Added 2023-03-10
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue