mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 15:42:02 +00:00
11 lines
150 B
Nix
11 lines
150 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "jqr";
|
||
|
runtimeInputs = [
|
||
|
pkgs.jq
|
||
|
pkgs.fzf
|
||
|
];
|
||
|
text = builtins.readFile ./jqr.sh;
|
||
|
}
|