17 lines
352 B
Nix
17 lines
352 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 ];
|
|
}
|