at 15.09-beta 15 lines 448 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 name = "libxdg-basedir-1.0.2"; 5 src = fetchurl { 6 url = "http://n.ethz.ch/student/nevillm/download/libxdg-basedir/${name}.tar.gz"; 7 sha256 = "0fibbzba228gdk05lfi8cgfrsp80a2gnjbwka0pzpkig0fz8pp9i"; 8 }; 9 10 meta = { 11 homepage = http://n.ethz.ch/student/nevillm/download/libxdg-basedir/; 12 description = "Implementation of the XDG Base Directory specification"; 13 license = "BSD"; 14 }; 15}