2019-01-29 00:28:36 +00:00
|
|
|
with import <stockholm/lib>;
|
|
|
|
self: super: {
|
2021-02-04 13:11:42 +00:00
|
|
|
fzf = super.fzf.overrideAttrs (old: {
|
|
|
|
# XXX cannot use `patches` because fzf has a custom patchPhase
|
|
|
|
patchPhase = ''
|
|
|
|
patch -Np1 < ${./fzf.complete1.patch}
|
2021-06-01 22:18:10 +00:00
|
|
|
${old.patchPhase or ""}
|
2021-02-04 13:11:42 +00:00
|
|
|
'';
|
|
|
|
});
|
2020-10-03 12:12:04 +00:00
|
|
|
input-fonts = super.input-fonts.overrideAttrs (old: rec {
|
2021-06-01 23:15:33 +00:00
|
|
|
src = self.fetchzip {
|
2020-10-03 12:12:04 +00:00
|
|
|
url = "http://xu.r/~tv/mirrors/input-fonts/Input-Font-2.zip";
|
2021-06-01 23:15:33 +00:00
|
|
|
sha256 = "1q58x92nm7dk9ylp09pvgj74nxkywvqny3xmfighnsl30dv42fcr";
|
|
|
|
stripRoot = false;
|
2020-10-03 12:12:04 +00:00
|
|
|
};
|
2021-06-01 23:15:33 +00:00
|
|
|
sourceRoot = null;
|
2020-10-03 12:12:04 +00:00
|
|
|
outputHash = null;
|
|
|
|
outputHashAlgo = null;
|
|
|
|
outputHashMode = null;
|
|
|
|
});
|
|
|
|
|
2020-10-15 12:24:58 +00:00
|
|
|
nix-prefetch-github =
|
|
|
|
self.python3Packages.callPackage ./nix-prefetch-github.nix {};
|
2019-01-29 00:28:36 +00:00
|
|
|
}
|