summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-08-03 09:28:59 +0200
committermakefu <github@syntax-fehler.de>2016-08-03 09:28:59 +0200
commitcba2979f860e3b55f82c58883bac84ceacd005bb (patch)
treeee421f8093206d76b61781e7777baa66816c412b /lib
parentb68633c0272514dd4f2d235796f87021664730c2 (diff)
parent46d73a70ce2df4af2d66228874470cb4c8657f14 (diff)
Merge remote-tracking branch 'cd/master'
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}";
+}