Compare commits
2 Commits
1c25e80ce5
...
692c8368eb
Author | SHA1 | Date | |
---|---|---|---|
692c8368eb | |||
a1d4c16326 |
24
189574.patch
Normal file
24
189574.patch
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
From 91e18cd7cd37d868425bf481ca453edfa81c9cc6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Gabriel Ebner <gebner@gebner.org>
|
||||||
|
Date: Sat, 3 Sep 2022 11:56:49 +0200
|
||||||
|
Subject: [PATCH] khal: fix fish/zsh completion
|
||||||
|
|
||||||
|
---
|
||||||
|
pkgs/applications/misc/khal/default.nix | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
|
||||||
|
index b6bb65a0bfffb..f822ed8f0c2b9 100644
|
||||||
|
--- a/pkgs/applications/misc/khal/default.nix
|
||||||
|
+++ b/pkgs/applications/misc/khal/default.nix
|
||||||
|
@@ -32,8 +32,8 @@ with python3.pkgs; buildPythonApplication rec {
|
||||||
|
# shell completions
|
||||||
|
installShellCompletion --cmd khal \
|
||||||
|
--bash <(_KHAL_COMPLETE=bash_source $out/bin/khal) \
|
||||||
|
- --fish <(_KHAL_COMPLETE=zsh_source $out/bin/khal) \
|
||||||
|
- --zsh <(_KHAL_COMPLETE=fish_source $out/bin/khal)
|
||||||
|
+ --zsh <(_KHAL_COMPLETE=zsh_source $out/bin/khal) \
|
||||||
|
+ --fish <(_KHAL_COMPLETE=fish_source $out/bin/khal)
|
||||||
|
|
||||||
|
# man page
|
||||||
|
PATH="${python3.withPackages (ps: with ps; [ sphinx sphinxcontrib_newsfeed ])}/bin:$PATH" \
|
@ -17,11 +17,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1661088761,
|
"lastModified": 1662019588,
|
||||||
"narHash": "sha256-5DGKX81wIPAAiLwUmUYECpA3vop94AHHR7WmGXSsQok=",
|
"narHash": "sha256-oPEjHKGGVbBXqwwL+UjsveJzghWiWV0n9ogo1X6l4cw=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "a7855f2235a1876f97473a76151fec2afa02b287",
|
"rev": "2da64a81275b68fdad38af669afeda43d401e94b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
channels.nixpkgs.input = nixpkgs;
|
channels.nixpkgs.input = nixpkgs;
|
||||||
|
|
||||||
channels.nixpkgs.patches = [ ];
|
channels.nixpkgs.patches = [ ./189574.patch ];
|
||||||
|
|
||||||
nix.generateRegistryFromInputs = true;
|
nix.generateRegistryFromInputs = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user