Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 9, 2024
1 parent de97374 commit 5b717d0
Showing 1 changed file with 24 additions and 10 deletions.
34 changes: 24 additions & 10 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
{ lib, pkgs, system, build_inputs, native_build_inputs, makeRustPlatform }:
{
lib,
pkgs,
system,
build_inputs,
native_build_inputs,
makeRustPlatform,
}:
let
rustBin = pkgs.rust-bin.stable.latest.default;

Expand All @@ -18,13 +25,20 @@ let

LD_LIBRARY_PATH = lib.makeLibraryPath build_inputs;
};
in {
bevy_gltf_kun = rustPlatform.buildRustPackage (common // {
pname = "bevy_gltf_kun";
buildAndTestSubdir = "bevy_gltf_kun";
});
gltf_kun = rustPlatform.buildRustPackage (common // {
pname = "gltf_kun";
buildAndTestSubdir = "gltf_kun";
});
in
{
bevy_gltf_kun = rustPlatform.buildRustPackage (
common
// {
pname = "bevy_gltf_kun";
buildAndTestSubdir = "bevy_gltf_kun";
}
);
gltf_kun = rustPlatform.buildRustPackage (
common
// {
pname = "gltf_kun";
buildAndTestSubdir = "gltf_kun";
}
);
}

0 comments on commit 5b717d0

Please sign in to comment.