23 lines
579 B
Nix
23 lines
579 B
Nix
{ pkgs, lib, inputs, ... }:
|
|
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=";
|
|
};
|
|
});
|
|
}
|
|
);
|
|
gamescope_overlay = self: super: {
|
|
gamescope = super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix" { };
|
|
};
|
|
in
|
|
{
|
|
nixpkgs.overlays = [ arrpc_overlay gamescope_overlay ];
|
|
}
|