mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: lsp changes, starship-jj
This commit is contained in:
parent
414a45327b
commit
032025969f
4 changed files with 49 additions and 1 deletions
25
packages/starship-jj.nix
Normal file
25
packages/starship-jj.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
lib,
|
||||
fetchCrate,
|
||||
rustPlatform,
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "starship-jj";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-oisz3V3UDHvmvbA7+t5j7waN9NykMUWGOpEB5EkmYew=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-NNeovW27YSK/fO2DjAsJqBvebd43usCw7ni47cgTth8=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Starship plugin for jj";
|
||||
homepage = "https://gitlab.com/lanastara_foss/starship-jj";
|
||||
maintainers = with maintainers; [
|
||||
nemith
|
||||
];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue