Unverified Commit 04dfdb03 authored by Marc Jakobi's avatar Marc Jakobi
Browse files

luaPackages.lux-lua: run formatter

parent 25f1a9df
Loading
Loading
Loading
Loading
+62 −60
Original line number Diff line number Diff line
@@ -12,14 +12,15 @@
  perl,
  pkg-config,
  rustPlatform,
  toLuaModule
  toLuaModule,
}:
let
  luaMajorMinor = lib.take 2 (lib.splitVersion lua.version);
  luaVersionDir = if isLuaJIT then "jit" else lib.concatStringsSep "." luaMajorMinor;
  luaFeature = if isLuaJIT then "luajit" else "lua${lib.concatStringsSep "" luaMajorMinor}";
in
toLuaModule (rustPlatform.buildRustPackage rec {
toLuaModule (
  rustPlatform.buildRustPackage rec {
    pname = "lux-lua";

    version = lux-cli.version;
@@ -90,4 +91,5 @@ toLuaModule (rustPlatform.buildRustPackage rec {
      ];
      platforms = lib.platforms.all;
    };
})
  }
)