* Added feh to set the root image.

* Compiz extra plugins.

svn path=/nixpkgs/trunk/; revision=8178
This commit is contained in:
Eelco Dolstra
2007-03-05 13:44:27 +00:00
parent 086832edff
commit e9178614a9
5 changed files with 75 additions and 3 deletions
@@ -0,0 +1,10 @@
{stdenv, fetchurl, x11, libjpeg, libtiff, libungif, libpng}:
stdenv.mkDerivation {
name = "imlib2-1.3.0";
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/enlightenment/imlib2-1.3.0.tar.gz;
sha256 = "1lrg7haqhmzpdb14cgp9vny5fanlwlyhf5n017v130in297gv1qj";
};
buildInputs = [x11 libjpeg libtiff libungif libpng];
}