2017-10-05 00:05:27 +02:00
|
|
|
{stdenv, fetchurl, fetchpatch}:
|
2010-03-04 15:44:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-10-05 00:05:27 +02:00
|
|
|
name = "libxdg-basedir-1.2.0";
|
2010-03-04 15:44:56 +01:00
|
|
|
src = fetchurl {
|
2017-10-05 00:05:27 +02:00
|
|
|
url = "https://nevill.ch/libxdg-basedir/downloads/${name}.tar.gz";
|
|
|
|
sha256 = "2757a949618742d80ac59ee2f0d946adc6e71576406cdf798e6ced507708cdf4";
|
2010-03-04 15:44:56 +01:00
|
|
|
};
|
|
|
|
|
2017-10-05 00:05:27 +02:00
|
|
|
patches = [
|
|
|
|
# Overflow bug
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/devnev/libxdg-basedir/commit/14e000f696ef8b83264b0ca4407669bdb365fb23.patch";
|
|
|
|
sha256 = "0lpy1ijir0x0hhb0fz0w5vxy1wl1cw9kkd6gva0rkp41i6vrp2wq";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/devnev/libxdg-basedir;
|
2010-03-04 15:44:56 +01:00
|
|
|
description = "Implementation of the XDG Base Directory specification";
|
2017-10-05 00:05:27 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2010-03-04 15:44:56 +01:00
|
|
|
};
|
|
|
|
}
|