diff options
author | tv <tv@shackspace.de> | 2015-07-08 22:12:35 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-08 22:12:35 +0200 |
commit | e7f737f1eb1ada49f9e210d242769c766c850dbe (patch) | |
tree | 561e42158b338f1e79b829e42d2f4c5d181393d8 /modules/tv/git/public.nix | |
parent | 3b94dd1994a66361ee224499cba1d5aeb9c53336 (diff) |
tv git public shitment: add desc
Diffstat (limited to 'modules/tv/git/public.nix')
-rw-r--r-- | modules/tv/git/public.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/tv/git/public.nix b/modules/tv/git/public.nix index b44828e51..de6ed7fdf 100644 --- a/modules/tv/git/public.nix +++ b/modules/tv/git/public.nix @@ -19,7 +19,10 @@ let (public "nixpkgs") (public "painload") (public "regfish") - (public "shitment") + (public' { + name = "shitment"; + desc = "turn all the computers into one computer!"; + }) (public "wai-middleware-time") (public "web-routes-wai-custom") ]; @@ -35,6 +38,12 @@ let rules = concatMap ({ rules, ... }: rules) public-git-repos; + public' = { name, desc }: + let + x = public name; + in + x // { repo = x.repo // { inherit desc; }; }; + public = repo-name: rec { repo = { |