mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
Merge pull request #224606 from ocfox/wakatime.fish
fishPlugins.wakatime-fish: init at 0.0.3
This commit is contained in:
commit
980d7e66e6
@ -50,6 +50,8 @@ lib.makeScope newScope (self: with self; {
|
||||
|
||||
tide = callPackage ./tide.nix { };
|
||||
|
||||
wakatime-fish = callPackage ./wakatime-fish.nix { };
|
||||
|
||||
z = callPackage ./z.nix { };
|
||||
} // lib.optionalAttrs config.allowAliases {
|
||||
autopair-fish = self.autopair; # Added 2023-03-10
|
||||
|
30
pkgs/shells/fish/plugins/wakatime-fish.nix
Normal file
30
pkgs/shells/fish/plugins/wakatime-fish.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, wakatime
|
||||
, buildFishPlugin
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildFishPlugin rec {
|
||||
pname = "wakatime-fish";
|
||||
version = "0.0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ik11235";
|
||||
repo = "wakatime.fish";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-t0b8jvkNU7agF0A8YkwQ57qGGqcYJF7l9eNr12j2ZQ0=";
|
||||
};
|
||||
|
||||
preFixup = ''
|
||||
substituteInPlace $out/share/fish/vendor_conf.d/wakatime.fish \
|
||||
--replace "if type -p wakatime" "if type -p ${lib.getExe wakatime}" \
|
||||
--replace "(type -p wakatime)" "${lib.getExe wakatime}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fish plugin for wakatime";
|
||||
homepage = "https://github.com/ik11235/wakatime.fish";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ocfox ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user