summaryrefslogtreecommitdiffstats
path: root/scripts/surf_search.nix
blob: 233a121db445de20c28e1a53cd3a660e174c7fe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs }:
pkgs.writeShellApplication {
  name = "surf_search";
  runtimeInputs = with pkgs; [
            dmenu
            xprop
            gnused
            coreutils
  ];
  text = builtins.readFile (
          pkgs.replaceVars ../dotfiles/surf/surf.sh {
            dmenu = pkgs.dmenu;
            xprop = pkgs.xprop;
            gnused = pkgs.gnused;
            coreutils = pkgs.coreutils;
          }
        );}