Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitLab,
|
|
autoreconfHook,
|
|
docbook_xsl,
|
|
libxslt,
|
|
meson,
|
|
pkg-config,
|
|
wrapGAppsHook3,
|
|
python3,
|
|
autoconf,
|
|
automake,
|
|
glib,
|
|
gtk-doc,
|
|
libtool,
|
|
intltool,
|
|
gitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xfce4-dev-tools";
|
|
version = "4.20.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.xfce.org";
|
|
owner = "xfce";
|
|
repo = "xfce4-dev-tools";
|
|
rev = "xfce4-dev-tools-${finalAttrs.version}";
|
|
hash = "sha256-eUfNa/9ksLCKtVwBRtHaVl7Yl95tukUaDdoLNfeR+Ew=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
docbook_xsl
|
|
libxslt # for xsltproc
|
|
# x-d-t itself is not a meson project, but the xfce-do-release script wants
|
|
# `meson rewrite kwargs`, thus this is checked by `AC_CHECK_PROGS`.
|
|
meson
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
python3 # for xdt-gen-visibility
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
autoconf
|
|
automake
|
|
glib
|
|
gtk-doc
|
|
intltool
|
|
libtool
|
|
];
|
|
|
|
dontUseMesonConfigure = true;
|
|
configureFlags = [ "--enable-maintainer-mode" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
rev-prefix = "xfce4-dev-tools-";
|
|
odd-unstable = true;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.xfce.org/xfce/xfce4-dev-tools";
|
|
description = "Autoconf macros and scripts to augment app build systems";
|
|
license = licenses.gpl2Plus;
|
|
teams = [ teams.xfce ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|