16 lines
506 B
Nix
16 lines
506 B
Nix
final: prev: {
|
|
wgautomesh = prev.wgautomesh.overrideAttrs (old: rec {
|
|
src = prev.fetchFromGitHub {
|
|
owner = "lynatic1337";
|
|
repo = "wgautomesh";
|
|
rev = "53b7a6b6edc144fc0d9679ed5c756530f9883374";
|
|
hash = "sha256-3pUQbNcx/EMhsiqZ74l8Y99VrdlsLgOgcYuHb4hKOiI=";
|
|
};
|
|
buildInputs = [final.rust-bin.nightly];
|
|
cargoDeps = final.rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
# TODO
|
|
hash = "sha256-YUlS7G26c3X8nJ2eDK2DTqR+QjcrF/2ZpZWPGecwyPo=";
|
|
};
|
|
});
|
|
}
|