2013-08-01 18:12:44 +00:00
|
|
|
{stdenv, fetchurl, imlib2, libX11, libXext }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "hsetroot-1.0.2";
|
|
|
|
|
|
|
|
# The primary download site seems to no longer exist; use Gentoo's mirror for now.
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://mirror.datapipe.net/gentoo/distfiles/hsetroot-1.0.2.tar.gz";
|
|
|
|
sha256 = "d6712d330b31122c077bfc712ec4e213abe1fe71ab24b9150ae2774ca3154fd7";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ imlib2 libX11 libXext ];
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Allows you to compose wallpapers ('root pixmaps') for X";
|
2013-08-01 18:12:44 +00:00
|
|
|
homepage = http://thegraveyard.org/hsetroot.html;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-08-01 18:12:44 +00:00
|
|
|
};
|
|
|
|
}
|