From e7f737f1eb1ada49f9e210d242769c766c850dbe Mon Sep 17 00:00:00 2001
From: tv <tv@shackspace.de>
Date: Wed, 8 Jul 2015 22:12:35 +0200
Subject: [PATCH] tv git public shitment: add desc

---
 modules/tv/git/public.nix | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

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 = {