mirror of
https://codeberg.org/icewind/vbsp-to-gltf.git
synced 2026-06-03 10:14:08 +02:00
fix nix server build
This commit is contained in:
parent
03efd888e3
commit
fa9641e125
1 changed files with 7 additions and 1 deletions
|
|
@ -1,8 +1,14 @@
|
||||||
{
|
{
|
||||||
stdenv,
|
stdenv,
|
||||||
rustPlatform,
|
rust-bin,
|
||||||
|
makeRustPlatform,
|
||||||
lib,
|
lib,
|
||||||
}: let
|
}: let
|
||||||
|
toolchain = rust-bin.stable.latest.default;
|
||||||
|
rustPlatform = makeRustPlatform {
|
||||||
|
rustc = toolchain;
|
||||||
|
cargo = toolchain;
|
||||||
|
};
|
||||||
inherit (lib.sources) sourceByRegex;
|
inherit (lib.sources) sourceByRegex;
|
||||||
src = sourceByRegex ./. ["Cargo.*" "(src|derive|benches|tests|examples.*)(/.*)?"];
|
src = sourceByRegex ./. ["Cargo.*" "(src|derive|benches|tests|examples.*)(/.*)?"];
|
||||||
in
|
in
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue