summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2014-08-18 10:08:18 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2014-08-19 06:19:33 -0300
commitfe270c011ce246bb7e95a0deec9106f1a04fe8d0 (patch)
treea855ae77dd1486f040569ad0aa66c89dfd0ce64c /pkgs/applications
parente4752d7877e4adcca25ca6228f1d36b58a83e8a5 (diff)
downloadnixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.tar
nixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.tar.gz
nixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.tar.bz2
nixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.tar.lz
nixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.tar.xz
nixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.tar.zst
nixpkgs-fe270c011ce246bb7e95a0deec9106f1a04fe8d0.zip
Fluxbox: new package (1.3.5)
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/window-managers/fluxbox/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/fluxbox/default.nix b/pkgs/applications/window-managers/fluxbox/default.nix
new file mode 100644
index 00000000000..6c91e773376
--- /dev/null
+++ b/pkgs/applications/window-managers/fluxbox/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, pkgconfig
+, freetype, fribidi
+, libXext, libXft, libXpm, libXrandr, libXrender, xextproto
+, libXinerama
+, imlib2
+}:
+
+stdenv.mkDerivation rec {
+
+  name = "fluxbox-${version}";
+  version = "1.3.5";
+
+  buildInputs = [
+    pkgconfig
+    freetype fribidi
+    libXext libXft libXpm libXrandr libXrender xextproto
+    libXinerama
+    imlib2
+  ];
+
+  src = fetchurl {
+    url = "mirror://sourceforge/fluxbox/${name}.tar.bz2";
+    sha256 = "164dd7bf59791d09a1e729a4fcd5e7347a1004ba675629860a5cf1a271c32983";
+  };
+
+  meta = {
+    description = "Full-featured, light-resource X window manager.";
+    longDescription = ''
+      Fluxbox is a X window manager based on Blackbox 0.61.1 window manager sources.
+      It is very light on resources and easy to handle but yet full of features to make an easy,
+      and extremely fast, desktop experience. It is written in C++ and licensed under MIT license.
+    '';
+    homepage = http://fluxbox.org/;
+    license = stdenv.lib.licenses.mit;
+    maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}
+# Many thanks Jack Ryan from Nix-dev mailing list!