diff options
Diffstat (limited to 'gexiv2_my.nix')
-rw-r--r-- | gexiv2_my.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gexiv2_my.nix b/gexiv2_my.nix new file mode 100644 index 0000000..6b2ab7f --- /dev/null +++ b/gexiv2_my.nix @@ -0,0 +1,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" + ]; + }); +} |