diff options
Diffstat (limited to 'third_party/overlays/tvl.nix')
-rw-r--r-- | third_party/overlays/tvl.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 8b4531e1bdb7..2736b63e8089 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -45,6 +45,14 @@ depot.nix.readTree.drvTargets { ]; }); + # Apply workaround from https://github.com/NixOS/nixpkgs/pull/211469 + # until it hits the nixos-unstable channel + mullvad = super.mullvad.overrideAttrs (old: { + nativeBuildInputs = old.nativeBuildInputs ++ [ + self.buildPackages.git + ]; + }); + home-manager = super.home-manager.overrideAttrs (_: { src = depot.third_party.sources.home-manager; version = "git-" |