stockholm/tv/lib/default.nix

28 lines
470 B
Nix
Raw Normal View History

2015-07-11 14:55:22 +00:00
{ lib, pkgs, ... }:
2015-07-24 10:23:52 +00:00
let
krebs = import ../../4lib/krebs { inherit lib; };
in
2015-07-11 14:55:22 +00:00
2015-07-24 10:23:52 +00:00
with krebs;
krebs // rec {
2015-07-11 14:55:22 +00:00
git = import ./git.nix {
2015-07-26 22:54:15 +00:00
lib = krebs;
2015-07-11 14:55:22 +00:00
inherit pkgs;
};
# "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}");
}