aboutsummaryrefslogtreecommitdiff
path: root/overlays/khal
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-05-23 03:36:16 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-05-23 03:36:16 +0200
commitf9914beb086a06e290287f299ae2c2026924a780 (patch)
tree4fe815abf6c47c9ff95cf311e1aabc6f7b1e9e9a /overlays/khal
parentcfda3cfc35445979225850f686f338e6d4ace372 (diff)
downloadNix-f9914beb086a06e290287f299ae2c2026924a780.tar.gz
Nix-f9914beb086a06e290287f299ae2c2026924a780.tar.zst
Nix-f9914beb086a06e290287f299ae2c2026924a780.zip
Upgrade environment
Diffstat (limited to 'overlays/khal')
-rw-r--r--overlays/khal/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/overlays/khal/default.nix b/overlays/khal/default.nix
new file mode 100644
index 0000000..597cc0e
--- /dev/null
+++ b/overlays/khal/default.nix
@@ -0,0 +1,8 @@
1self: super: {
2 khal = super.khal.overridePythonAttrs(old: {
3 postPatch = ''
4 sed -i "s/Invalid value for \"ics\"/Invalid value for \\\'ics\\\'/" tests/cli_test.py
5 sed -i "s/Invalid value for \"\[ICS\]\"/Invalid value for \\\'[ICS]\\\'/" tests/cli_test.py
6 '';
7 });
8}