commit
This commit is contained in:
16
nix/overlays.nix
Normal file
16
nix/overlays.nix
Normal 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 ];
|
||||
}
|
||||
Reference in New Issue
Block a user