66d7126255
Since years I'm not maintaining anything of the list below other than some updates when I needed them for some reason. Other people is doing that maintenance on my behalf so I better take me out but for very few packages. Finally!
34 lines
841 B
Nix
34 lines
841 B
Nix
{stdenv, fetchgit, xproto, libX11, libXft, customConfig ? null, patches ? [] }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tabbed-20160425";
|
|
|
|
src = fetchgit {
|
|
url = https://git.suckless.org/tabbed;
|
|
rev = "bc236142fa72d2f9d6b5c790d3f3a9a9168a7164";
|
|
sha256 = "1fiv57g3jnlhnb6zrzl3n6lnpn2s9s0sd7bcv7r1nb3grwy7icri";
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
postPatch = stdenv.lib.optionalString (customConfig != null) ''
|
|
cp ${builtins.toFile "config.h" customConfig} ./config.h
|
|
'';
|
|
|
|
buildInputs = [ xproto libX11 libXft ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
meta = {
|
|
homepage = https://tools.suckless.org/tabbed;
|
|
description = "Simple generic tabbed fronted to xembed aware applications";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|