depot/third_party/nixpkgs/pkgs/shells/fish/plugins/wakatime-fish.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

30 lines
741 B
Nix

{ lib
, wakatime
, buildFishPlugin
, fetchFromGitHub
}:
buildFishPlugin rec {
pname = "wakatime-fish";
version = "0.0.6";
src = fetchFromGitHub {
owner = "ik11235";
repo = "wakatime.fish";
rev = "v${version}";
hash = "sha256-Hsr69n4fCvPc64NztgaBZQuR0znkzlL8Uotw9Jf2S1o=";
};
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 ];
};
}