nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

libxdg_basedir: 1.2.0 -> 1.2.3

Nick Cao 4330cec2 f1992487

+15 -12
+15 -12
pkgs/development/libraries/libxdg-basedir/default.nix
··· 1 - {lib, stdenv, fetchurl, fetchpatch}: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "libxdg-basedir"; 5 - version = "1.2.0"; 9 + version = "1.2.3"; 6 10 7 - src = fetchurl { 8 - url = "https://nevill.ch/libxdg-basedir/downloads/libxdg-basedir-${version}.tar.gz"; 9 - sha256 = "2757a949618742d80ac59ee2f0d946adc6e71576406cdf798e6ced507708cdf4"; 11 + src = fetchFromGitHub { 12 + owner = "devnev"; 13 + repo = pname; 14 + rev = "refs/tags/libxdg-basedir-${version}"; 15 + hash = "sha256-ewtUKDdE6k9Q9hglWwhbTU3DTxvIN41t+zf2Gch9Dkk="; 10 16 }; 11 17 12 - patches = [ 13 - # Overflow bug 14 - (fetchpatch { 15 - url = "https://github.com/devnev/libxdg-basedir/commit/14e000f696ef8b83264b0ca4407669bdb365fb23.patch"; 16 - sha256 = "0lpy1ijir0x0hhb0fz0w5vxy1wl1cw9kkd6gva0rkp41i6vrp2wq"; 17 - }) 18 + nativeBuildInputs = [ 19 + autoreconfHook 18 20 ]; 19 21 20 22 meta = with lib; { 21 - homepage = "https://github.com/devnev/libxdg-basedir"; 22 23 description = "Implementation of the XDG Base Directory specification"; 24 + homepage = "https://github.com/devnev/libxdg-basedir"; 23 25 license = licenses.mit; 26 + maintainers = with maintainers; [ nickcao ]; 24 27 platforms = platforms.unix; 25 28 }; 26 29 }