mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
13 lines
501 B
Text
13 lines
501 B
Text
self: super: {
|
|
halloy = super.halloy.overrideAttrs (oldAttrs: rec {
|
|
version = "2025.5";
|
|
src = super.fetchFromGitHub {
|
|
owner = "squidowl";
|
|
repo = "halloy";
|
|
rev = "2025.5";
|
|
sha256 = "0000000000000000000000000000000000000000000000000000"; # <--- Replace after first build
|
|
};
|
|
# If the build fails due to Cargo.lock, you may also need to override cargoSha256:
|
|
# cargoSha256 = "0000000000000000000000000000000000000000000000000000"; # Replace if needed
|
|
});
|
|
}
|