summary refs log tree commit diff
path: root/pkgs/applications/window-managers/tabbed/default.nix
blob: f0a427e683952f293ab559045c37ebe19a1618de (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
29
30
31
32
33
{stdenv, fetchgit, xorgproto, libX11, libXft, customConfig ? null, patches ? [] }:

with stdenv.lib;

stdenv.mkDerivation {
  name = "tabbed-20180310";

  src = fetchgit {
    url = "https://git.suckless.org/tabbed";
    rev = "b5f9ec647aae2d9a1d3bd586eb7523a4e0a329a3";
    sha256 = "0frj2yjaf0mfjwgyfappksfir52mx2xxd3cdg5533m5d88vbmxss";
  };

  inherit patches;

  postPatch = stdenv.lib.optionalString (customConfig != null) ''
    cp ${builtins.toFile "config.h" customConfig} ./config.h
  '';

  buildInputs = [ xorgproto 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;
  };
}