1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libxdg-basedir/default.nix

17 lines
491 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "libxdg-basedir-1.0.2";
src = fetchurl {
url = "http://n.ethz.ch/student/nevillm/download/libxdg-basedir/${name}.tar.gz";
sha256 = "0fibbzba228gdk05lfi8cgfrsp80a2gnjbwka0pzpkig0fz8pp9i";
};
meta = {
homepage = http://n.ethz.ch/student/nevillm/download/libxdg-basedir/;
description = "Implementation of the XDG Base Directory specification";
license = "BSD";
platforms = stdenv.lib.platforms.unix;
};
}