summary refs log tree commit diff
path: root/pkgs/applications/window-managers/windowmaker
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-08-14 18:57:06 +0200
committeraszlig <aszlig@redmoonstudios.org>2013-08-14 20:50:59 +0200
commit23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6 (patch)
tree62ab366179c023aac71c2b8d4b9a1514d2f2e02b /pkgs/applications/window-managers/windowmaker
parentf67392cbca551e62da7917260ad852c212d236a0 (diff)
downloadnixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.tar
nixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.tar.gz
nixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.tar.bz2
nixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.tar.lz
nixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.tar.xz
nixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.tar.zst
nixlib-23a53b8dfa6e5e5173f8650e68b7593a3af6e6c6.zip
windowmaker: New package in version 0.95.4.
Packaged this for @devhell sometime ago and adding it here so maybe it's
useful for other people using Nix(OS).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/window-managers/windowmaker')
-rw-r--r--pkgs/applications/window-managers/windowmaker/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/windowmaker/default.nix b/pkgs/applications/window-managers/windowmaker/default.nix
new file mode 100644
index 000000000000..2b146a78cb39
--- /dev/null
+++ b/pkgs/applications/window-managers/windowmaker/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, libX11, libXft, libXmu }:
+
+stdenv.mkDerivation rec {
+  name = "windowmaker-${version}";
+  version = "0.95.4";
+
+  src = fetchurl {
+    url = "http://windowmaker.org/pub/source/release/"
+        + "WindowMaker-${version}.tar.gz";
+    sha256 = "0icffqnmkkjjf412m27wljbf9vxb2ry4aiyi2pqmzw3h0pq9gsib";
+  };
+
+  buildInputs = [ pkgconfig libX11 libXft libXmu ];
+
+  meta = {
+    homepage = "http://windowmaker.org/";
+    description = "NeXTSTEP-like window manager";
+    license = stdenv.lib.licenses.gpl2Plus;
+  };
+}