about summary refs log tree commit diff
path: root/machines/profpatsch/pkgs.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2015-12-18 14:31:38 +0100
committerProfpatsch <mail@profpatsch.de>2015-12-18 14:55:30 +0100
commite3eaae9bfd57e159781fe02a59ac6ef5fec7481f (patch)
tree5e008bb40d61f9cb0d1c0ea13c09d7247572ea3a /machines/profpatsch/pkgs.nix
parentc0a50406adbceda82650b15d371e176857659236 (diff)
katara: offlineimap wrapper (for gpg unlock)
Diffstat (limited to 'machines/profpatsch/pkgs.nix')
-rw-r--r--machines/profpatsch/pkgs.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
new file mode 100644
index 00000000..9605cf2b
--- /dev/null
+++ b/machines/profpatsch/pkgs.nix
@@ -0,0 +1,8 @@
+{ pkgs }:
+{
+
+  offlineimap =  with pkgs; offlineimap.overrideDerivation (old: {
+    propagatedNativeBuildInputs = old.propagatedNativeBuildInputs ++ [ pythonPackages.pygpgme ];
+  });
+
+}