mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
31 lines
741 B
Nix
31 lines
741 B
Nix
{ 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 ];
|
|
};
|
|
}
|