nixpkgs/pkgs/by-name/pa/parinfer-rust-emacs/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
660 B
Nix
Raw Normal View History

{
fetchFromGitHub,
lib,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "parinfer-rust-emacs";
2024-09-13 05:50:26 +00:00
version = "0.4.7";
src = fetchFromGitHub {
owner = "justinbarclay";
repo = "parinfer-rust-emacs";
rev = "v${version}";
2024-09-13 05:50:26 +00:00
hash = "sha256-JYKFfbfpkvBRxYUDw2d6DD1mO27OKzdquSOhBk0lXr0=";
};
2024-09-13 05:50:26 +00:00
cargoHash = "sha256-E3x/Jy21qP1onABRmbrq51ZKrlqwiWIwSaqOCh28lKw=";
meta = with lib; {
description = "Emacs centric fork of parinfer-rust";
mainProgram = "parinfer-rust";
homepage = "https://github.com/justinbarclay/parinfer-rust-emacs";
license = licenses.isc;
maintainers = with maintainers; [ brsvh ];
};
}