Skip to content

Commit

Permalink
helix: init at 0.3.0 (#126208)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <[email protected]>
  • Loading branch information
yusdacra and SuperSandro2000 authored Jun 30, 2021
1 parent 90f2a9d commit a3274dc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/applications/editors/helix/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ fetchFromGitHub, lib, rustPlatform }:

rustPlatform.buildRustPackage rec {
pname = "helix";
version = "0.3.0";

src = fetchFromGitHub {
owner = "helix-editor";
repo = pname;
rev = "v${version}";
fetchSubmodules = true;
sha256 = "sha256-dI5yIP5uUmM9pyMpvvdrk8/0jE/REkU/m9BF081LwMU=";
};

cargoSha256 = "sha256-l3Ikr4IyUsHItJIC4BaIZZb6vio3bchumbbPI+nxIjQ=";

cargoBuildFlags = [ "--features embed_runtime" ];

meta = with lib; {
description = "A post-modern modal text editor";
homepage = "https://helix-editor.com";
license = licenses.mpl20;
maintainers = with maintainers; [ yusdacra ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23665,6 +23665,8 @@ in

haruna = libsForQt5.callPackage ../applications/video/haruna { };

helix = callPackage ../applications/editors/helix { };

icesl = callPackage ../applications/misc/icesl { };

keepassx = callPackage ../applications/misc/keepassx { };
Expand Down

0 comments on commit a3274dc

Please sign in to comment.