summaryrefslogtreecommitdiff
path: root/gexiv2_my.nix
blob: 6b2ab7f970ac90be876904b2382ba0c4cea26708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ inputs }:
self: super: {
  gexiv2_my =
    with super;
    (gexiv2.override { exiv2 = self.exiv2_my; }).overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://gitlab.gnome.org/GNOME/gexiv2";
        ref = "master";
        rev = "06adc8fb70cb8c77c0cd364195d8251811106ef8";
      };
      #    buildInputs = oldAttrs.buildInputs ++ [ brotli inih ];
      #  doCheck = false;
      mesonFlags = [
        "-Dgtk_doc=true"
        "-Dtests=true"
      ];
    });
}