summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-08 22:12:35 +0200
committertv <tv@shackspace.de>2015-07-08 22:12:35 +0200
commite7f737f1eb1ada49f9e210d242769c766c850dbe (patch)
tree561e42158b338f1e79b829e42d2f4c5d181393d8 /modules
parent3b94dd1994a66361ee224499cba1d5aeb9c53336 (diff)
tv git public shitment: add desc
Diffstat (limited to 'modules')
-rw-r--r--modules/tv/git/public.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/tv/git/public.nix b/modules/tv/git/public.nix
index b44828e5..de6ed7fd 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 = {