summary refs log tree commit diff
path: root/pkgs/applications/misc/rofi/wrapper.nix
blob: 17bbf1583c466585d867b6f44d7a44b999f69990 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, rofi-unwrapped, makeWrapper, theme ? null, lib }:

if theme == null then rofi-unwrapped else
stdenv.mkDerivation {
  name = "rofi-${rofi-unwrapped.version}";
  buildInputs = [ makeWrapper ];
  preferLocalBuild = true;
  passthru.unwrapped = rofi-unwrapped;
  buildCommand = ''
    mkdir $out
    ln -s ${rofi-unwrapped}/* $out
    rm $out/bin
    mkdir $out/bin
    ln -s ${rofi-unwrapped}/bin/* $out/bin
    rm $out/bin/rofi
    makeWrapper ${rofi-unwrapped}/bin/rofi $out/bin/rofi --add-flags "-theme ${theme}"
  '';

  meta = rofi-unwrapped.meta // {
    priority = (rofi-unwrapped.meta.priority or 0) - 1;
  };
}