2012-03-25 21:10:25 +01:00
|
|
|
{stdenv, fetchhg, xproto, libX11, patches ? []}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tabbed-20120209";
|
|
|
|
|
|
|
|
src = fetchhg {
|
|
|
|
url = http://hg.suckless.org/tabbed;
|
2014-06-28 19:33:28 +01:00
|
|
|
rev = "d7542a6f6dc5";
|
2012-03-25 21:10:25 +01:00
|
|
|
sha256 = "1963jsazfmh5k7923c1mfwppz1xbh48z16j0sa64fiscq22as2gj";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Allow users set their own list of patches
|
|
|
|
inherit patches;
|
|
|
|
|
|
|
|
buildInputs = [ xproto libX11 ];
|
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
export makeFlags="PREFIX=$out"
|
|
|
|
'';
|
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-25 21:10:25 +01:00
|
|
|
homepage = http://tools.suckless.org/tabbed;
|
|
|
|
description = "Simple generic tabbed fronted to xembed aware applications";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.mit;
|
2015-05-27 20:56:04 +01:00
|
|
|
maintainers = with maintainers; [ viric ];
|
|
|
|
platforms = with platforms; linux;
|
2012-03-25 21:10:25 +01:00
|
|
|
};
|
|
|
|
}
|