Merge pull request #800 from edanaher/master
Add simple hsetroot package.
This commit is contained in:
commit
4fb87e91ff
19
pkgs/tools/X11/hsetroot/default.nix
Normal file
19
pkgs/tools/X11/hsetroot/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{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 = {
|
||||
description = "hsetroot allows you to compose wallpapers ('root pixmaps') for X";
|
||||
homepage = http://thegraveyard.org/hsetroot.html;
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
@ -9155,6 +9155,8 @@ let
|
||||
|
||||
gnome = recurseIntoAttrs gnome2;
|
||||
|
||||
hsetroot = callPackage ../tools/X11/hsetroot { };
|
||||
|
||||
kde4 = recurseIntoAttrs pkgs.kde410;
|
||||
|
||||
kde48 = kdePackagesFor (pkgs.kde48 // {
|
||||
|
Loading…
Reference in New Issue
Block a user