summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorEvan Danaher <github@edanaher.net>2013-08-01 20:12:44 +0200
committerEvan Danaher <github@edanaher.net>2013-08-01 20:16:37 +0200
commit35333935d6a620177bfe8e02aad836b830175be8 (patch)
tree1e2daea5ea57b5eb5ff659c7bd75b81c91dc936d /pkgs/tools/X11
parent65ad55c425ddd3f6dea06f1b6a1c51e076179965 (diff)
downloadnixlib-35333935d6a620177bfe8e02aad836b830175be8.tar
nixlib-35333935d6a620177bfe8e02aad836b830175be8.tar.gz
nixlib-35333935d6a620177bfe8e02aad836b830175be8.tar.bz2
nixlib-35333935d6a620177bfe8e02aad836b830175be8.tar.lz
nixlib-35333935d6a620177bfe8e02aad836b830175be8.tar.xz
nixlib-35333935d6a620177bfe8e02aad836b830175be8.tar.zst
nixlib-35333935d6a620177bfe8e02aad836b830175be8.zip
Add simple hsetroot package.
Diffstat (limited to 'pkgs/tools/X11')
-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+";
+  };
+}