flake/pkgs/overlay.nix

15 lines
398 B
Nix
Raw Normal View History

2025-01-14 18:56:49 +01:00
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=";
};
});
}