parinfer-rust-emacs: init at 0.4.6

Signed-off-by: Burgess Chang <bsc@brsvh.org>
This commit is contained in:
Burgess Chang 2024-05-10 09:08:17 +08:00
parent 1801fa8d7e
commit 97d44a2202
No known key found for this signature in database
GPG Key ID: 78D74502D92E0218

View File

@ -0,0 +1,27 @@
{
fetchFromGitHub,
lib,
llvmPackages,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "parinfer-rust-emacs";
version = "0.4.6";
src = fetchFromGitHub {
owner = "justinbarclay";
repo = "parinfer-rust-emacs";
rev = "v${version}";
hash = "sha256-SNs/75beomxvexfE4+3v/l9Xl5w5SY0EWcORHvRitOw=";
};
cargoHash = "sha256-LmfcY9iR7BGh3dF/raSZTIwburtaQRI3I3XvOZG343M=";
meta = with lib; {
description = "An emacs centric fork of parinfer-rust";
mainProgram = "parinfer-rust";
homepage = "https://github.com/justinbarclay/parinfer-rust-emacs";
license = licenses.isc;
maintainers = with maintainers; [ brsvh ];
};
}