2025-01-14 18:56:49 +01:00
|
|
|
inputs: final: prev: {
|
|
|
|
wgautomesh = let
|
|
|
|
toolchain = inputs.fenix-monthly.packages.${final.stdenv.hostPlatform.system}.latest.toolchain;
|
|
|
|
cargo = toolchain;
|
|
|
|
platform = final.makeRustPlatform {
|
|
|
|
rustc = toolchain;
|
|
|
|
cargo = toolchain;
|
|
|
|
};
|
|
|
|
wgam-nightly = prev.wgautomesh.override {rustPlatform = platform;};
|
|
|
|
wgam-lyn = wgam-nightly.overrideAttrs (old: rec {
|
2025-01-15 18:55:00 +01:00
|
|
|
src = builtins.fetchGit {
|
|
|
|
url = "https://git.deuxfleurs.fr/lynatic/wgautomesh.git";
|
2025-01-15 19:09:36 +01:00
|
|
|
rev = "a8957c9558aaffcc0682afffd429253d7c0e026c";
|
2025-01-14 18:56:49 +01:00
|
|
|
};
|
2025-01-15 18:55:00 +01:00
|
|
|
cargoDeps = platform.importCargoLock {
|
|
|
|
lockFile = src + "/Cargo.lock";
|
2025-01-14 18:56:49 +01:00
|
|
|
};
|
|
|
|
});
|
|
|
|
in
|
|
|
|
wgam-lyn;
|
|
|
|
}
|