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
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
fetchurl,
|
|
libxslt,
|
|
docbook_xsl,
|
|
docbook_xml_dtd_43,
|
|
gettext,
|
|
makeWrapper,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "xdg-user-dirs";
|
|
version = "0.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://user-dirs.freedesktop.org/releases/xdg-user-dirs-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-7G8G10lc26N6cyA5+bXhV4vLKWV2/eDaQO2y9SIg3zw=";
|
|
};
|
|
|
|
patches = [
|
|
# https://gitlab.freedesktop.org/xdg/xdg-user-dirs/-/merge_requests/16
|
|
./gettext-0.25.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile.am \
|
|
--replace-fail 'libraries = $(LIBINTL)' 'libraries = $(LIBICONV) $(LIBINTL)'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
makeWrapper
|
|
libxslt
|
|
docbook_xsl
|
|
docbook_xml_dtd_43
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ gettext ];
|
|
|
|
NIX_LDFLAGS = if stdenv.isDarwin then "-liconv" else null;
|
|
|
|
preFixup = ''
|
|
# fallback values need to be last
|
|
wrapProgram "$out/bin/xdg-user-dirs-update" \
|
|
--suffix XDG_CONFIG_DIRS : "$out/etc/xdg"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://freedesktop.org/wiki/Software/xdg-user-dirs";
|
|
description = "Tool to help manage well known user directories like the desktop folder and the music folder";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [
|
|
donovanglover
|
|
iFreilicht
|
|
];
|
|
platforms = platforms.unix;
|
|
mainProgram = "xdg-user-dirs-update";
|
|
};
|
|
})
|