nixpkgs-suyu/pkgs/applications/editors/helix/default.nix

35 lines
833 B
Nix
Raw Normal View History

2021-08-13 20:07:01 +02:00
{ fetchFromGitHub, lib, rustPlatform, makeWrapper }:
rustPlatform.buildRustPackage rec {
pname = "helix";
2021-08-22 18:27:59 +02:00
version = "0.4.1";
src = fetchFromGitHub {
owner = "helix-editor";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
2021-08-22 18:27:59 +02:00
sha256 = "sha256-lScMHZ/pLcHkuvv8kSKnYK5AFVxyhOUMFdsu3nlDVD0=";
};
2021-08-22 18:27:59 +02:00
cargoSha256 = "sha256-N5vlPoYyksHEZsyia8u8qtoEBY6qsXqO9CRBFaTQmiw=";
2021-08-13 20:07:01 +02:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
mkdir -p $out/lib
cp -r runtime $out/lib
'';
postFixup = ''
wrapProgram $out/bin/hx --set HELIX_RUNTIME $out/lib/runtime
'';
meta = with lib; {
description = "A post-modern modal text editor";
homepage = "https://helix-editor.com";
license = licenses.mpl20;
2021-08-11 01:13:07 +02:00
mainProgram = "hx";
maintainers = with maintainers; [ yusdacra ];
};
}