summary refs log tree commit diff
path: root/pkgs/applications/window-managers/tabbed
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-25 20:10:25 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-25 20:10:25 +0000
commitf389901fd252abbaec6f97900c09dccf0f42d57f (patch)
treeccda83902daf1f6b156aecf177545c40513ca8b3 /pkgs/applications/window-managers/tabbed
parent343fb0be1ef86b035aca99c74166ce0d5abcc73f (diff)
downloadnixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.tar
nixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.tar.gz
nixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.tar.bz2
nixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.tar.lz
nixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.tar.xz
nixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.tar.zst
nixpkgs-f389901fd252abbaec6f97900c09dccf0f42d57f.zip
Adding 'tabbed'. I think Alexander Foremny wanted to send this patch
long ago, but I could not find it.


svn path=/nixpkgs/trunk/; revision=33414
Diffstat (limited to 'pkgs/applications/window-managers/tabbed')
-rw-r--r--pkgs/applications/window-managers/tabbed/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/tabbed/default.nix b/pkgs/applications/window-managers/tabbed/default.nix
new file mode 100644
index 00000000000..79d00cb823e
--- /dev/null
+++ b/pkgs/applications/window-managers/tabbed/default.nix
@@ -0,0 +1,28 @@
+{stdenv, fetchhg, xproto, libX11, patches ? []}:
+
+stdenv.mkDerivation rec {
+  name = "tabbed-20120209";
+ 
+  src = fetchhg {
+    url = http://hg.suckless.org/tabbed;
+    tag = "d7542a6f6dc5";
+    sha256 = "1963jsazfmh5k7923c1mfwppz1xbh48z16j0sa64fiscq22as2gj";
+  };
+
+  # Allow users set their own list of patches
+  inherit patches;
+
+  buildInputs = [ xproto libX11 ];
+
+  preInstall = ''
+    export makeFlags="PREFIX=$out"
+  '';
+ 
+  meta = {
+    homepage = http://tools.suckless.org/tabbed;
+    description = "Simple generic tabbed fronted to xembed aware applications";
+    license="MIT"
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}