From b5015b5865d8e8f8b64f99746a571b708e9b776f Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 1 Jan 2021 12:27:20 +0100 Subject: pkgs/profpatsch: add nix-run Small tool which takes a block of nix options that should produce a script to run, and then calls the script with the rest of argv e nix-run { -A foobar } a b c calls `nix-build -A foobar && ./result a b c`. --- machines/profpatsch/shiki.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'machines/profpatsch/shiki.nix') diff --git a/machines/profpatsch/shiki.nix b/machines/profpatsch/shiki.nix index 3fc11089..9175ec23 100644 --- a/machines/profpatsch/shiki.nix +++ b/machines/profpatsch/shiki.nix @@ -259,6 +259,10 @@ in { exe = pkgs.vuizvui.profpatsch.e; name = "e"; }) + (pkgs.vuizvui.profpatsch.binify { + exe = pkgs.vuizvui.profpatsch.nix-run; + name = "nix-run"; + }) myPkgs.zoomboxed ]; in systemPkgs ++ xPkgs ++ guiPkgs -- cgit 1.4.1