2021-01-15 14:21:58 +01:00
|
|
|
{lib, stdenv, fetchgit, xorgproto, libX11, libXft, customConfig ? null, patches ? [] }:
|
2015-06-19 19:58:50 +02:00
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
with lib;
|
2012-03-25 22:10:25 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2018-11-30 04:03:33 +01:00
|
|
|
name = "tabbed-20180310";
|
2015-06-19 19:58:50 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "https://git.suckless.org/tabbed";
|
2018-11-30 04:03:33 +01:00
|
|
|
rev = "b5f9ec647aae2d9a1d3bd586eb7523a4e0a329a3";
|
|
|
|
sha256 = "0frj2yjaf0mfjwgyfappksfir52mx2xxd3cdg5533m5d88vbmxss";
|
2012-03-25 22:10:25 +02:00
|
|
|
};
|
|
|
|
|
2016-06-29 21:28:13 +02:00
|
|
|
inherit patches;
|
|
|
|
|
2021-01-15 14:21:58 +01:00
|
|
|
postPatch = lib.optionalString (customConfig != null) ''
|
2016-06-29 21:20:16 +02:00
|
|
|
cp ${builtins.toFile "config.h" customConfig} ./config.h
|
|
|
|
'';
|
|
|
|
|
2018-12-31 04:40:47 +01:00
|
|
|
buildInputs = [ xorgproto libX11 libXft ];
|
2012-03-25 22:10:25 +02:00
|
|
|
|
2016-06-29 21:28:13 +02:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
2015-06-19 19:58:50 +02:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://tools.suckless.org/tabbed";
|
2012-03-25 22:10:25 +02:00
|
|
|
description = "Simple generic tabbed fronted to xembed aware applications";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.mit;
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2012-03-25 22:10:25 +02:00
|
|
|
};
|
|
|
|
}
|