mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-06-08 15:10:02 +00:00
10 lines
369 B
Nix
10 lines
369 B
Nix
# zerokit rln built from source; overrides the stale v2.0.2 vendor cargoHash.
|
|
{ zerokit, system }:
|
|
zerokit.packages.${system}.rln.overrideAttrs (old: {
|
|
cargoDeps = old.cargoDeps.overrideAttrs (oldCargoDeps: {
|
|
vendorStaging = oldCargoDeps.vendorStaging.overrideAttrs (_: {
|
|
outputHash = "sha256-PNwEdZLgGQPqQDrEK2hsQtSybVfBbD6xn4K47fPFJUU=";
|
|
});
|
|
});
|
|
})
|