about summary refs log tree commit diff
path: root/pkgs/profpatsch/execline/nixecline.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/profpatsch/execline/nixecline.nix')
-rw-r--r--pkgs/profpatsch/execline/nixecline.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/profpatsch/execline/nixecline.nix b/pkgs/profpatsch/execline/nixecline.nix
deleted file mode 100644
index 518bce2e..00000000
--- a/pkgs/profpatsch/execline/nixecline.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-# wrappers around execline commands ensuring sane default behaviours
-{ writeExecline }:
-
-let
-  backtick = {
-    var,
-    cmd,
-    importVar ? [ "importas" "-ui" var var ]
-  }: writeExecline "nix-backtick" {}
-    ([ "backtick" "-in" var cmd ]
-    ++ importVar
-    ++ [ "$@" ]);
-
-in {
- inherit backtick;
-}