nix: Patch to support NIX_DAEMON=<addr>:<port>

This commit is contained in:
Tyson Whitehead
2018-01-23 23:38:50 -05:00
parent 1d156fc470
commit 820719fb02
2 changed files with 106 additions and 0 deletions

View File

@@ -20,4 +20,9 @@ self: super: pkgs: with pkgs; {
namd = callPackage ./namd.nix { };
sambamba = callPackage ./sambamba { };
nixStable = super.nixStable.overrideAttrs
( attrs: { patches = attrs.patches or [] ++ [ ./nix/remote.patch ]; } );
nix = super.nix.overrideAttrs
( attrs: { patches = attrs.patches or [] ++ [ ./nix/remote.patch ]; } );
}