865293c508
XDG_CONFIG_DIRS should contain directories ordered by priority so if we want users to be able to customize the defaults, we need to move the shipped values to the end.
27 lines
825 B
Nix
27 lines
825 B
Nix
{ stdenv, fetchurl, libxslt, docbook_xsl, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xdg-user-dirs-0.17";
|
|
|
|
src = fetchurl {
|
|
url = "https://user-dirs.freedesktop.org/releases/${name}.tar.gz";
|
|
sha256 = "13216b8rfkzak5k6bvpx6jvqv3cnbgpijnjwj8a8d3kq4cl0a1ra";
|
|
};
|
|
|
|
buildInputs = [ libxslt docbook_xsl makeWrapper ];
|
|
|
|
preFixup = ''
|
|
# fallback values need to be last
|
|
wrapProgram "$out/bin/xdg-user-dirs-update" \
|
|
--suffix XDG_CONFIG_DIRS : "$out/etc/xdg"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://freedesktop.org/wiki/Software/xdg-user-dirs;
|
|
description = "A tool to help manage well known user directories like the desktop folder and the music folder";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ lethalman ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|