stockholm/tv/4lib/default.nix

21 lines
309 B
Nix
Raw Normal View History

2015-07-11 14:55:22 +00:00
{ lib, pkgs, ... }:
let
2015-07-28 19:38:22 +00:00
krebs = import ../../krebs/4lib { inherit lib; };
in
2015-07-11 14:55:22 +00:00
with krebs;
krebs // rec {
2015-07-11 14:55:22 +00:00
git = import ./git.nix {
lib = krebs;
inherit pkgs;
2015-07-11 14:55:22 +00:00
};
# "7.4.335" -> "74"
majmin = with lib; x : concatStrings (take 2 (splitString "." x));
shell-escape = krebs.shell.escape;
2015-07-11 14:55:22 +00:00
}