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: b7e1cdd95a38
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 09aa1b23bb5f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 17, 2020

  1. fish: fix systemctl completion

    gebner committed Jan 17, 2020
    Copy the full SHA
    09aa1b2 View commit details
Showing with 10 additions and 0 deletions.
  1. +10 −0 pkgs/shells/fish/default.nix
10 changes: 10 additions & 0 deletions pkgs/shells/fish/default.nix
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
groff, man-db, getent, libiconv, pcre2,
gettext, ncurses, python3,
cmake
, fetchpatch

, writeText

@@ -107,6 +108,15 @@ let
patchShebangs ./build_tools/git_version_gen.sh
'';

patches = [
# Fixes "Integer 243 in '243 (243)' followed by non-digit" error with systemctl completion.
# https://github.com/fish-shell/fish-shell/issues/5689 (will be included in fish 3.1.0)
(fetchpatch {
url = "https://github.com/fish-shell/fish-shell/commit/c6ec4235136e82c709e8d7b455f7c463f9714b48.patch";
sha256 = "02m6pkhhx6y21csydznsxkbpnwhcpzyz99xgd9ryh7s03v7wbigw";
})
];

# Required binaries during execution
# Python: Autocompletion generated from manpages and config editing
propagatedBuildInputs = [