Unverified Commit c0d22ab1 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233119 from tomodachi94/create/darklua

darklua: init at 0.9.0
parents f36c9e89 0305e8da
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "darklua";
  version = "0.9.0";

  src = fetchFromGitHub {
    owner = "seaofvoices";
    repo = "darklua";
    rev = "v${version}";
    hash = "sha256-ABzhtAbWv2oM4VqxRUWC+xh2fwUw1s2iU1IWb5EEhiE=";
  };

  cargoHash = "sha256-36YN/7aI69xsnwGz8oQG5RZu8XjQ9vwQtRNMWQ7pT0Q=";

  # error: linker `aarch64-linux-gnu-gcc` not found
  postPatch = ''
    rm .cargo/config.toml
  '';

  meta = with lib; {
    description = "A command line tool that transforms Lua code";
    homepage = "https://darklua.com";
    changelog = "https://github.com/seaofvoices/darklua/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ tomodachi94 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2607,6 +2607,8 @@ with pkgs;
  ctx = callPackage ../applications/terminal-emulators/ctx { };
  darklua = callPackage ../development/tools/darklua { };
  darktile = callPackage ../applications/terminal-emulators/darktile { };
  dterm = callPackage ../applications/terminal-emulators/dterm { };