Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

71 lines
1.2 KiB
Nix

{
stdenv,
lib,
fetchFromGitLab,
docbook_xsl,
glib,
libxslt,
meson,
ninja,
pkg-config,
wrapGAppsHook3,
exo,
gst_all_1,
gtk3,
libburn,
libgudev,
libisofs,
libxfce4ui,
libxfce4util,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xfburn";
version = "0.8.0";
src = fetchFromGitLab {
domain = "gitlab.xfce.org";
owner = "apps";
repo = "xfburn";
tag = "xfburn-${finalAttrs.version}";
hash = "sha256-10MjUxy1Ul6CVLdEWFnjppgsI4fAUWqkT2azJBzp0/Q=";
};
strictDeps = true;
nativeBuildInputs = [
docbook_xsl
glib # glib-genmarshal
libxslt # xsltproc
meson
ninja
pkg-config
wrapGAppsHook3
];
buildInputs = [
exo
glib
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gtk3
libburn
libgudev
libisofs
libxfce4ui
libxfce4util
];
passthru.updateScript = gitUpdater { rev-prefix = "xfburn-"; };
meta = {
description = "Disc burner and project creator for Xfce";
homepage = "https://gitlab.xfce.org/apps/xfburn";
license = lib.licenses.gpl2Plus;
mainProgram = "xfburn";
teams = [ lib.teams.xfce ];
platforms = lib.platforms.linux;
};
})