diff options
author | tv <tv@krebsco.de> | 2015-10-21 00:08:18 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-10-21 01:53:07 +0200 |
commit | 2d6f4b400cc625278b93187772c76a104b6254b2 (patch) | |
tree | 982923e3eefd9d74b8346bfbf4a733d43dcb49f7 /tv/4lib | |
parent | cc3dc775fb435c95dd6a25182fc3c0c3ea01d76a (diff) |
stockholm: provide krebs lib
Diffstat (limited to 'tv/4lib')
-rw-r--r-- | tv/4lib/default.nix | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/tv/4lib/default.nix b/tv/4lib/default.nix index 106535b..7e6b2ab 100644 --- a/tv/4lib/default.nix +++ b/tv/4lib/default.nix @@ -1,20 +1,14 @@ { lib, pkgs, ... }: -let - krebs = import ../../krebs/4lib { inherit lib; }; -in - -with krebs; - -krebs // rec { +lib // rec { git = import ./git.nix { - lib = krebs; - inherit pkgs; + inherit lib pkgs; }; # "7.4.335" -> "74" majmin = with lib; x : concatStrings (take 2 (splitString "." x)); - shell-escape = krebs.shell.escape; + # TODO deprecate shell-escape for lass + shell-escape = lib.shell.escape; } |