This commit is contained in:
Doloro1978
2025-09-25 15:45:57 +01:00
parent 5a9746290c
commit e60fd01ba3
7 changed files with 66 additions and 7 deletions

16
nix/overlays.nix Normal file
View File

@@ -0,0 +1,16 @@
{ 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 ];
}