about summary refs log tree commit diff
path: root/nixpkgs-overlays/scripts/choose/default.nix
blob: 1091c84b647fcf68e57f212101b568f31664e48e (plain) (blame)
1
2
3
4
5
6
7
8
{ runCommand, makeWrapper, execline, fzf }:

in runCommand "choose" { inherit execline fzf; } ''
  install -d $out/bin
  substituteAll ${./choose.in} $out/bin/choose
  substituteAll ${./choosebin.in} $out/bin/choosebin
  chmod +x $out/bin/*
''