summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-08-02 20:24:45 +0200
committertv <tv@krebsco.de>2016-08-02 20:24:45 +0200
commitaa167d3e26bd4fd0fedc1ea94b7069cca2100181 (patch)
tree26078465cdae6a684ef086919745473950ee4870 /lib
parent6a91d7257b994d9a56e40bf1cd0af78f79473fd7 (diff)
lib: import shell from krebs/4lib
Diffstat (limited to 'lib')
-rw-r--r--lib/default.nix7
-rw-r--r--lib/shell.nix21
2 files changed, 28 insertions, 0 deletions
diff --git a/lib/default.nix b/lib/default.nix
new file mode 100644
index 00000000..6c607f13
--- /dev/null
+++ b/lib/default.nix
@@ -0,0 +1,7 @@
+let
+ lib = import <nixpkgs/lib> // builtins // {
+ shell = import ./shell.nix { inherit lib; };
+ };
+in
+
+lib
diff --git a/lib/shell.nix b/lib/shell.nix
new file mode 100644
index 00000000..a8ff5dbe
--- /dev/null
+++ b/lib/shell.nix
@@ -0,0 +1,21 @@
+{ lib, ... }:
+
+with lib;
+
+rec {
+ escape =
+ let
+ isSafeChar = c: match "[-+./0-9:=A-Z_a-z]" c != null;
+ in
+ stringAsChars (c:
+ if isSafeChar c then c
+ else if c == "\n" then "'\n'"
+ else "\\${c}");
+
+ #
+ # shell script generators
+ #
+
+ # example: "${cat (toJSON { foo = "bar"; })} | jq -r .foo"
+ cat = s: "printf '%s' ${escape s}";
+}