nixpkgs/pkgs/by-name/gd/gdl/package.nix
Dmitry Ivankov 566c0f9568 gdl: suppress gcc14 warning
https://gitlab.gnome.org/Archive/gdl/-/issues/9

A patch is also listed there but not clear if it is accepted upstream
yet, disabling warning is probably safer.

`gdl` is dependency of `gpx-viewer` which gets fixed by this change,
and the app starts ok.

Failure log example
https://hydra.nixos.org/build/294736426/nixlog/2

ZHF: #403336
2025-05-04 22:01:35 +02:00

49 lines
922 B
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
libxml2,
gtk3,
gnome,
intltool,
}:
stdenv.mkDerivation rec {
pname = "gdl";
version = "3.40.0";
src = fetchurl {
url = "mirror://gnome/sources/gdl/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "NkHU/WadHhgYrv88+f+3iH/Fw2eFC3jCjHdeukq2pVU=";
};
env = lib.optionalAttrs stdenv.cc.isGNU {
# https://gitlab.gnome.org/Archive/gdl/-/issues/9
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
};
nativeBuildInputs = [
pkg-config
intltool
];
buildInputs = [
libxml2
gtk3
];
passthru = {
updateScript = gnome.updateScript {
packageName = "gdl";
};
};
meta = with lib; {
description = "Gnome docking library";
homepage = "https://developer.gnome.org/gdl/";
teams = [ teams.gnome ];
license = licenses.gpl2;
platforms = platforms.unix;
};
}