Skip to content

Commit

Permalink
refactor: replace informal usages according to @sikmir
Browse files Browse the repository at this point in the history
  • Loading branch information
definfo committed Oct 27, 2024
1 parent 0076519 commit 312250d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/by-name/ri/rime-ls/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ rustPlatform.buildRustPackage rec {

src = fetchFromGitHub {
owner = "wlh320";
repo = pname;
repo = "rime-ls";
rev = "v${version}";
sha256 = "sha256-ZqoRFIF3ehfEeTN+ZU+/PAzA4JyS1403+sqZdzwJHA8=";
hash = "sha256-ZqoRFIF3ehfEeTN+ZU+/PAzA4JyS1403+sqZdzwJHA8=";
};

cargoLock = {
Expand Down Expand Up @@ -57,11 +57,11 @@ rustPlatform.buildRustPackage rec {

passthru.updateScript = gitUpdater { };

meta = with lib; {
meta = {
description = "A language server for Rime input method engine";
homepage = "https://github.com/wlh320/rime-ls";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ definfo ];
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ definfo ];
};
}

0 comments on commit 312250d

Please sign in to comment.