2015-06-19 18:58:50 +01:00
|
|
|
{stdenv, fetchgit, xproto, libX11, enableXft, libXft}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2012-03-25 21:10:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-19 18:58:50 +01:00
|
|
|
name = "tabbed-20150509";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = http://git.suckless.org/tabbed;
|
|
|
|
rev = "55dc32b27b73c121cab18009bf087e95ef3d9c18";
|
|
|
|
sha256 = "0c5ayf1lrb1xiz5h8dfd4mh05kas42zzi5m5ylrvl67sfz3z4wg1";
|
2012-03-25 21:10:25 +01:00
|
|
|
};
|
|
|
|
|
2015-06-19 18:58:50 +01:00
|
|
|
patches = optional enableXft ./xft.patch;
|
2012-03-25 21:10:25 +01:00
|
|
|
|
2015-06-19 18:58:50 +01:00
|
|
|
buildInputs = [ xproto libX11 ] ++ optional enableXft libXft;
|
2012-03-25 21:10:25 +01:00
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
export makeFlags="PREFIX=$out"
|
|
|
|
'';
|
2015-06-19 18:58:50 +01:00
|
|
|
|
|
|
|
meta = {
|
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
|
|
|
};
|
|
|
|
}
|