about summary refs log tree commit diff
path: root/machines/profpatsch/pkgs.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2015-12-27 22:30:20 +0100
committerProfpatsch <mail@profpatsch.de>2015-12-27 22:30:49 +0100
commit5dc7fc15f343f16d077ec44e834c042e8661dc0c (patch)
treea3f30ee038ec3662bd2c289ea8c59b1492e4e2ae /machines/profpatsch/pkgs.nix
parent843eba128cb16b37ca8b297eb5ff6c61349e7883 (diff)
katara: taffybar patch
Diffstat (limited to 'machines/profpatsch/pkgs.nix')
-rw-r--r--machines/profpatsch/pkgs.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index ff6a2280..ef0a2f3f 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -11,4 +11,15 @@ with pkgs;
 
   offlineimap = addRuntimeDeps offlineimap [ pythonPackages.pygpgme ];
 
+  taffybar = taffybar.override {
+    ghcWithPackages = (haskellPackages.override {
+      overrides = _: super: {
+        taffybar = super.taffybar.overrideDerivation (old: {
+          name = old.name + "foo";
+          patches = (old.patches or []) ++ [ ./taffybar.patch ];
+        });
+      };
+    }).ghcWithPackages;
+  };
+
 }