helix: init at 0.3.0 (#126208)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by ptr.pet Sandro and committed by GitHub a3274dca 90f2a9d9

+27
+25
pkgs/applications/editors/helix/default.nix
··· 1 + { fetchFromGitHub, lib, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "helix"; 5 + version = "0.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "helix-editor"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + fetchSubmodules = true; 12 + sha256 = "sha256-dI5yIP5uUmM9pyMpvvdrk8/0jE/REkU/m9BF081LwMU="; 13 + }; 14 + 15 + cargoSha256 = "sha256-l3Ikr4IyUsHItJIC4BaIZZb6vio3bchumbbPI+nxIjQ="; 16 + 17 + cargoBuildFlags = [ "--features embed_runtime" ]; 18 + 19 + meta = with lib; { 20 + description = "A post-modern modal text editor"; 21 + homepage = "https://helix-editor.com"; 22 + license = licenses.mpl20; 23 + maintainers = with maintainers; [ yusdacra ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 23665 23665 23666 23666 haruna = libsForQt5.callPackage ../applications/video/haruna { }; 23667 23667 23668 + helix = callPackage ../applications/editors/helix { }; 23669 + 23668 23670 icesl = callPackage ../applications/misc/icesl { }; 23669 23671 23670 23672 keepassx = callPackage ../applications/misc/keepassx { };