mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
fishPlugins.sdkman-for-fish: init at 1.4.0
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
f80cd0a794
commit
c490096481
@ -48,6 +48,8 @@ lib.makeScope newScope (self: with self; {
|
||||
|
||||
pure = callPackage ./pure.nix { };
|
||||
|
||||
sdkman-for-fish = callPackage ./sdkman-for-fish.nix { };
|
||||
|
||||
sponge = callPackage ./sponge.nix { };
|
||||
|
||||
tide = callPackage ./tide.nix { };
|
||||
|
20
pkgs/shells/fish/plugins/sdkman-for-fish.nix
Normal file
20
pkgs/shells/fish/plugins/sdkman-for-fish.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildFishPlugin, fetchFromGitHub }:
|
||||
|
||||
buildFishPlugin rec {
|
||||
pname = "sdkman-for-fish";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "reitzig";
|
||||
repo = "sdkman-for-fish";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-bfWQ2al0Xy8bnJt5euziHz/+qhyri4qWy47VDoPwQcg=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Adds support for SDKMAN! to fish";
|
||||
homepage = "https://github.com/reitzig/sdkman-for-fish";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ giorgiga ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user