Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f89d6d92b7b4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b285ea77c2a8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 4, 2018

  1. khal: add zsh completion

    teto committed Sep 4, 2018
    Copy the full SHA
    61df695 View commit details

Commits on Sep 6, 2018

  1. Merge pull request #46034 from teto/khal_zsh_completion

    khal: add zsh completion
    Mic92 authored Sep 6, 2018
    Copy the full SHA
    b285ea7 View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/applications/misc/khal/default.nix
4 changes: 4 additions & 0 deletions pkgs/applications/misc/khal/default.nix
Original file line number Diff line number Diff line change
@@ -46,6 +46,10 @@ in with python.pkgs; buildPythonApplication rec {
nativeBuildInputs = [ setuptools_scm pkgs.glibcLocales ];
checkInputs = [ pytest ];

postInstall = ''
install -D misc/__khal $out/share/zsh/site-functions/__khal
'';

checkPhase = ''
py.test
'';