summaryrefslogtreecommitdiffstats
path: root/tv/5pkgs/simple/fzmenu/default.nix
blob: 7e19505c1bf20858e88249081b0d3be7dba20583 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ lib, pkgs, stdenv }:

let
  terminal = pkgs.writeDashBin "terminal" ''
    # usage: terminal COMMAND [ARGS...]
    exec ${pkgs.alacritty-tv}/bin/alacritty \
        --profile=fzmenu \
        --class AlacrittyFzmenuFloat \
        -e "$@"
  '';
in

pkgs.runCommand "fzmenu" {
} /* sh */ ''
  mkdir $out

  cp -r ${./bin} $out/bin

  substituteInPlace $out/bin/otpmenu \
      --replace '#! /bin/sh' '#! ${pkgs.dash}/bin/dash' \
      --replace '#PATH=' PATH=${lib.makeBinPath [
        pkgs.coreutils
        pkgs.dash
        pkgs.fzf
        pkgs.gnused
        (pkgs.pass.withExtensions (ext: [
          ext.pass-otp
        ]))
        pkgs.utillinux
        pkgs.xdotool
        terminal
      ]}

  substituteInPlace $out/bin/passmenu \
      --replace '#! /bin/sh' '#! ${pkgs.dash}/bin/dash' \
      --replace '#PATH=' PATH=${lib.makeBinPath [
        pkgs.coreutils
        pkgs.dash
        pkgs.fzf
        pkgs.gnused
        (pkgs.pass.withExtensions (ext: [
          ext.pass-otp
        ]))
        pkgs.utillinux
        pkgs.xdotool
        terminal
      ]}
''