Merge pull request #227125 from giorgiga/fish-sdkman

fishPlugins: add sdkman-for-fish
This commit is contained in:
Sandro 2023-05-05 21:43:26 +02:00 committed by GitHub
commit ad17db8f2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 0 deletions

View File

@ -5695,6 +5695,12 @@
githubId = 1713676;
name = "Luis G. Torres";
};
giorgiga = {
email = "giorgio.gallo@bitnic.it";
github = "giorgiga";
githubId = 471835;
name = "Giorgio Gallo";
};
GKasparov = {
email = "mizozahr@gmail.com";
github = "GKasparov";

View File

@ -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 { };

View 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 ];
};
}