summaryrefslogtreecommitdiff
path: root/feh_my.nix
blob: e1ed2af95f32dbe5ae46b08a9c3e6aeb46e0c131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 = [ ];
      });
}