Files
dotfiles/nix/overlays.nix
2025-10-02 10:08:12 +00:00

20 lines
409 B
Nix

{ pkgs, lib, ... }:
let
arrpc_overlay = (
self: super: {
arrpc = super.arrpc.overrideAttrs (prev: {
version = "git";
src = pkgs.fetchFromGitHub {
owner = "Doloro1978";
repo = "arrpc";
tag = "tag3";
sha256 = "sha256-9Tnw/BmIAA+RPAfhHFv0kenrRdoxJuUw3iRjKykGxdE=";
};
});
}
);
in
{
nixpkgs.overlays = [ arrpc_overlay ];
}