khal: Use version from unstable
The version from stable throws errors and sometimes even crashes due to an incompatibility with pytz.
This commit is contained in:
parent
a44948006c
commit
4af15f2139
|
@ -232,7 +232,7 @@ in
|
|||
|
||||
|
||||
def khal(args):
|
||||
completed = subprocess.run(["${pkgs.khal}/bin/khal"] + args, capture_output=True)
|
||||
completed = subprocess.run(["khal"] + args, capture_output=True)
|
||||
assert completed.returncode == 0
|
||||
return completed.stdout.decode("utf-8")
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@ let
|
|||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
khal
|
||||
unstable.khal
|
||||
khard
|
||||
vdirsyncer
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue