Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
834 B
Nix
36 lines
834 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
makeWrapper,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kibi";
|
|
version = "0.2.2";
|
|
|
|
cargoHash = "sha256-7SOkREsGiolT5LxLAbjZe3aAYBT/AlhlOXDlDmoei9w=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ilai-deutel";
|
|
repo = "kibi";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ox1qKWxJlUIFzEqeyzG2kqZix3AHnOKFrlpf6O5QM+k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
install -Dm644 syntax.d/* -t $out/share/kibi/syntax.d
|
|
wrapProgram $out/bin/kibi --prefix XDG_DATA_DIRS : "$out/share"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Text editor in ≤1024 lines of code, written in Rust";
|
|
homepage = "https://github.com/ilai-deutel/kibi";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ robertodr ];
|
|
mainProgram = "kibi";
|
|
};
|
|
}
|