3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/helix/default.nix

35 lines
833 B
Nix
Raw Normal View History

2021-08-13 19:07:01 +01:00
{ fetchFromGitHub, lib, rustPlatform, makeWrapper }:
rustPlatform.buildRustPackage rec {
pname = "helix";
2021-08-22 17:27:59 +01:00
version = "0.4.1";
src = fetchFromGitHub {
owner = "helix-editor";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
2021-08-22 17:27:59 +01:00
sha256 = "sha256-lScMHZ/pLcHkuvv8kSKnYK5AFVxyhOUMFdsu3nlDVD0=";
};
2021-08-22 17:27:59 +01:00
cargoSha256 = "sha256-N5vlPoYyksHEZsyia8u8qtoEBY6qsXqO9CRBFaTQmiw=";
2021-08-13 19:07:01 +01: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 00:13:07 +01:00
mainProgram = "hx";
maintainers = with maintainers; [ yusdacra ];
};
}