stockholm/tv/lib/default.nix

23 lines
393 B
Nix
Raw Normal View History

2015-07-11 14:55:22 +00:00
{ lib, pkgs, ... }:
2015-07-27 19:36:15 +00:00
with lib;
2015-07-11 14:55:22 +00:00
2015-07-27 19:36:15 +00:00
lib // rec {
2015-07-11 14:55:22 +00:00
git = import ./git.nix {
2015-07-27 19:36:15 +00:00
inherit lib pkgs;
2015-07-11 14:55:22 +00:00
};
# "7.4.335" -> "74"
majmin = with lib; x : concatStrings (take 2 (splitString "." x));
shell-escape =
let
isSafeChar = c: match "[-./0-9_a-zA-Z]" c != null;
in
stringAsChars (c:
if isSafeChar c then c
else if c == "\n" then "'\n'"
else "\\${c}");
}