From 2c0a76d58aaae3bb2ba3809acb8bd33514eac10b Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Fri, 10 Jan 2025 16:42:18 -0600 Subject: [PATCH] use local rmlint src code --- pkgs/run.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/run.nix b/pkgs/run.nix index 3fb1f50..9fa9ead 100644 --- a/pkgs/run.nix +++ b/pkgs/run.nix @@ -2,11 +2,11 @@ writeShellApplication, bash, zenity, - rmlint, git, gum, xclip, ghostty, + callPackage, ... }: writeShellApplication { @@ -15,11 +15,11 @@ writeShellApplication { runtimeInputs = [ bash zenity - rmlint git gum xclip ghostty + (callPackage ../pkgs_pr/rmlint.nix { }) ]; text = builtins.readFile ../src/packaged_scripts/run.sh;