summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-08-02 02:32:19 -0700
committerPeter Simons <simons@cryp.to>2013-08-02 02:32:19 -0700
commit4fb87e91ffcbf6f6785e32b7e608198401a7155d (patch)
treee830fb964479aa5c68e32c1a4bfec9edea0febaa /pkgs/tools
parent9b9fa35ebd30a9b86c6124be31fb1244a4207ead (diff)
parent35333935d6a620177bfe8e02aad836b830175be8 (diff)
downloadnixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.tar
nixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.tar.gz
nixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.tar.bz2
nixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.tar.lz
nixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.tar.xz
nixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.tar.zst
nixlib-4fb87e91ffcbf6f6785e32b7e608198401a7155d.zip
Merge pull request #800 from edanaher/master
Add simple hsetroot package.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/X11/hsetroot/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/tools/X11/hsetroot/default.nix b/pkgs/tools/X11/hsetroot/default.nix
new file mode 100644
index 000000000000..96241bd02cdf
--- /dev/null
+++ b/pkgs/tools/X11/hsetroot/default.nix
@@ -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+";
+  };
+}