diff options
Diffstat (limited to 'feh_my.nix')
-rw-r--r-- | feh_my.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/feh_my.nix b/feh_my.nix new file mode 100644 index 0000000..e1ed2af --- /dev/null +++ b/feh_my.nix @@ -0,0 +1,24 @@ +{ inputs }: +self: super: { + feh_my = + with super; + (feh.override { + imlib2 = imlib2Full.override { + heifSupport = true; + webpSupport = true; + svgSupport = true; + jxlSupport = true; + psSupport = true; + libheif = self.libheif_my; + }; + }).overrideAttrs + (old: rec { + version = "git"; + src = fetchGit { + url = "https://github.com/derf/feh"; + ref = "master"; + }; + doCheck = false; + patches = [ ]; + }); +} |