Compare commits

..

No commits in common. "692c8368eb9aa49c46e1ca7ad0adf684288629a7" and "1c25e80ce5dcc053b76dd3d8d3bfacbede5c066b" have entirely different histories.

3 changed files with 4 additions and 28 deletions

View File

@ -1,24 +0,0 @@
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" \

View File

@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1662019588,
"narHash": "sha256-oPEjHKGGVbBXqwwL+UjsveJzghWiWV0n9ogo1X6l4cw=",
"lastModified": 1661088761,
"narHash": "sha256-5DGKX81wIPAAiLwUmUYECpA3vop94AHHR7WmGXSsQok=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2da64a81275b68fdad38af669afeda43d401e94b",
"rev": "a7855f2235a1876f97473a76151fec2afa02b287",
"type": "github"
},
"original": {

View File

@ -15,7 +15,7 @@
channels.nixpkgs.input = nixpkgs;
channels.nixpkgs.patches = [ ./189574.patch ];
channels.nixpkgs.patches = [ ];
nix.generateRegistryFromInputs = true;