Merge pull request #224606 from ocfox/wakatime.fish

fishPlugins.wakatime-fish: init at 0.0.3
This commit is contained in:
Sandro 2023-04-17 10:08:49 +02:00 committed by GitHub
commit 980d7e66e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -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

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