mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
26 lines
660 B
Nix
26 lines
660 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
rustPlatform,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "parinfer-rust-emacs";
|
|
version = "0.4.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "justinbarclay";
|
|
repo = "parinfer-rust-emacs";
|
|
rev = "v${version}";
|
|
hash = "sha256-JYKFfbfpkvBRxYUDw2d6DD1mO27OKzdquSOhBk0lXr0=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|