Adding 'awesome' (and two packages it was depending on)

svn path=/nixpkgs/trunk/; revision=20385
This commit is contained in:
Lluís Batlle i Rossell
2010-03-04 14:44:56 +00:00
parent 9c75629a31
commit 22065c11d9
4 changed files with 84 additions and 1 deletions
@@ -0,0 +1,15 @@
{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";
};
}