diff options
Diffstat (limited to 'tv/5pkgs/override/default.nix')
-rw-r--r-- | tv/5pkgs/override/default.nix | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/tv/5pkgs/override/default.nix b/tv/5pkgs/override/default.nix index 4fb2e8061..4cc4749d0 100644 --- a/tv/5pkgs/override/default.nix +++ b/tv/5pkgs/override/default.nix @@ -1,24 +1,4 @@ with import <stockholm/lib>; -self: super: { - fzf = super.fzf.overrideAttrs (old: { - # XXX cannot use `patches` because fzf has a custom patchPhase - patchPhase = '' - patch -Np1 < ${./fzf.complete1.patch} - ${old.patchPhase or ""} - ''; - }); - input-fonts = super.input-fonts.overrideAttrs (old: rec { - src = self.fetchzip { - url = "http://xu.r/~tv/mirrors/input-fonts/Input-Font-2.zip"; - sha256 = "1q58x92nm7dk9ylp09pvgj74nxkywvqny3xmfighnsl30dv42fcr"; - stripRoot = false; - }; - sourceRoot = null; - outputHash = null; - outputHashAlgo = null; - outputHashMode = null; - }); +self: super: - nix-prefetch-github = - self.python3Packages.callPackage ./nix-prefetch-github.nix {}; -} +mapNixDir (path: import path self super) ./. |