21 stdenv.mkDerivation (finalAttrs: {
22 pname = "xfce4-dev-tools";
25 src = fetchFromGitLab {
26 domain = "gitlab.xfce.org";
28 repo = "xfce4-dev-tools";
29 rev = "xfce4-dev-tools-${finalAttrs.version}";
30 hash = "sha256-eUfNa/9ksLCKtVwBRtHaVl7Yl95tukUaDdoLNfeR+Ew=";
36 libxslt # for xsltproc
37 # x-d-t itself is not a meson project, but the xfce-do-release script wants
38 # `meson rewrite kwargs`, thus this is checked by `AC_CHECK_PROGS`.
45 python3 # for xdt-gen-visibility
48 propagatedBuildInputs = [
57 dontUseMesonConfigure = true;
58 configureFlags = [ "--enable-maintainer-mode" ];
60 enableParallelBuilding = true;
62 setupHook = ./setup-hook.sh;
64 passthru.updateScript = gitUpdater {
65 rev-prefix = "xfce4-dev-tools-";
70 homepage = "https://gitlab.xfce.org/xfce/xfce4-dev-tools";
71 description = "Autoconf macros and scripts to augment app build systems";
72 license = licenses.gpl2Plus;
73 maintainers = with maintainers; [ ] ++ teams.xfce.members;
74 platforms = platforms.linux;