about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libxdg-basedir
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libxdg-basedir')
-rw-r--r--nixpkgs/pkgs/development/libraries/libxdg-basedir/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libxdg-basedir/default.nix b/nixpkgs/pkgs/development/libraries/libxdg-basedir/default.nix
new file mode 100644
index 000000000000..f0e63efc0d14
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libxdg-basedir/default.nix
@@ -0,0 +1,24 @@
+{stdenv, fetchurl, fetchpatch}:
+
+stdenv.mkDerivation rec {
+  name = "libxdg-basedir-1.2.0";
+  src = fetchurl {
+    url = "https://nevill.ch/libxdg-basedir/downloads/${name}.tar.gz";
+    sha256 = "2757a949618742d80ac59ee2f0d946adc6e71576406cdf798e6ced507708cdf4";
+  };
+
+  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;
+    description = "Implementation of the XDG Base Directory specification";
+    license = licenses.mit;
+    platforms = platforms.unix;
+  };
+}