14 lines
398 B
Nix
14 lines
398 B
Nix
final: prev: {
|
|
wgautomesh = prev.wgautomesh.overrideAttrs (old: rec {
|
|
src = builtins.fetchFromGitHub {
|
|
owner = "lynatic1337";
|
|
repo = "wgautomesh";
|
|
rev = "53b7a6b6edc144fc0d9679ed5c756530f9883374";
|
|
};
|
|
cargoDeps = final.rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
# TODO
|
|
hash = "sha256-uKn2jvdM7TLy62v3Yub/TDqNwYSOXqRnV5J+2prLEQA=";
|
|
};
|
|
});
|
|
}
|