22065c11d9
svn path=/nixpkgs/trunk/; revision=20385
16 lines
448 B
Nix
16 lines
448 B
Nix
{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";
|
|
};
|
|
}
|