stockholm/tv/4lib/default.nix

15 lines
260 B
Nix
Raw Normal View History

2015-07-11 14:55:22 +00:00
{ lib, pkgs, ... }:
2015-10-20 22:08:18 +00:00
lib // rec {
2015-07-11 14:55:22 +00:00
git = import ./git.nix {
2015-10-20 22:08:18 +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));
2015-10-20 22:08:18 +00:00
# TODO deprecate shell-escape for lass
shell-escape = lib.shell.escape;
2015-07-11 14:55:22 +00:00
}