summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/termite/wrapper.nix
blob: 379223d9076d0c00a101030af0f7e2c2defb164b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{  makeWrapper, symlinkJoin, configFile ? null, termite }:

if configFile == null then termite else symlinkJoin {
  name = "termite-with-config-${termite.version}";

  paths = [ termite ];
  nativeBuildInputs = [ makeWrapper ];

  postBuild = ''
    wrapProgram $out/bin/termite \
      --add-flags "--config ${configFile}"
  '';

  passthru.terminfo = termite.terminfo;
}