blob: 5d141eb8049c3d35134c9bc07d950be19fe16c68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
stdenv,
fetchurl,
libxslt,
docbook_xsl,
gettext,
libiconv,
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=";
};
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
nativeBuildInputs = [
makeWrapper
libxslt
docbook_xsl
] ++ lib.optionals stdenv.isDarwin [ gettext ];
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 ];
platforms = platforms.unix;
mainProgram = "xdg-user-dirs-update";
};
})
|