flake/pkgs/overlay.nix

16 lines
459 B
Nix
Raw Normal View History

2025-01-14 18:56:49 +01:00
final: prev: {
wgautomesh = prev.wgautomesh.overrideAttrs (old: rec {
src = prev.fetchFromGitHub {
owner = "lynatic1337";
repo = "wgautomesh";
rev = "53b7a6b6edc144fc0d9679ed5c756530f9883374";
hash = sha256-3pUQbNcx/EMhsiqZ74l8Y99VrdlsLgOgcYuHb4hKOiI;
};
cargoDeps = final.rustPlatform.fetchCargoTarball {
inherit src;
# TODO
hash = "sha256-uKn2jvdM7TLy62v3Yub/TDqNwYSOXqRnV5J+2prLEQA=";
};
});
}