summary refs log tree commit diff
path: root/pkgs/applications/window-managers/tabbed/default.nix
blob: 82539b940b8caf2081b173bf117af9e5d116c984 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{stdenv, fetchhg, xproto, libX11, patches ? []}:

stdenv.mkDerivation rec {
  name = "tabbed-20120209";
 
  src = fetchhg {
    url = http://hg.suckless.org/tabbed;
    rev = "d7542a6f6dc5";
    sha256 = "1963jsazfmh5k7923c1mfwppz1xbh48z16j0sa64fiscq22as2gj";
  };

  # Allow users set their own list of patches
  inherit patches;

  buildInputs = [ xproto libX11 ];

  preInstall = ''
    export makeFlags="PREFIX=$out"
  '';
 
  meta = with stdenv.lib; {
    homepage = http://tools.suckless.org/tabbed;
    description = "Simple generic tabbed fronted to xembed aware applications";
    license = with licenses; mit;
    maintainers = with maintainers; [ viric ];
    platforms = with platforms; linux;
  };
}