Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 20183371f50e
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e249e593778f
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Apr 25, 2018

  1. nix-zsh-completions: 0.3.8 -> 0.3.9

    (cherry picked from commit 2848b5d)
    hedning authored and LnL7 committed Apr 25, 2018
    Copy the full SHA
    a61f935 View commit details
  2. nix-bash-completions: 0.6.5 -> 0.6.6

    (cherry picked from commit 954e02f)
    hedning authored and LnL7 committed Apr 25, 2018
    Copy the full SHA
    e249e59 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/shells/nix-bash-completions/default.nix
  2. +2 −2 pkgs/shells/nix-zsh-completions/default.nix
4 changes: 2 additions & 2 deletions pkgs/shells/nix-bash-completions/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
version = "0.6.5";
version = "0.6.6";
name = "nix-bash-completions-${version}";

src = fetchFromGitHub {
owner = "hedning";
repo = "nix-bash-completions";
rev = "v${version}";
sha256 = "10f70jw81vky52s3fidf7vzl725fihiypsw39825wnkpynayhmrg";
sha256 = "1lz9cgacyd4cphr7l90x4hn0ifhxwzz2d5829w1jcglasfacfpsw";
};

# To enable lazy loading via. bash-completion we need a symlink to the script
4 changes: 2 additions & 2 deletions pkgs/shells/nix-zsh-completions/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub }:

let
version = "0.3.8";
version = "0.3.9";
in

stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "spwhitt";
repo = "nix-zsh-completions";
rev = "${version}";
sha256 = "05ynd38br2kn657g7l01jg1q8ja9xwrdyb95w02gh7j9cww2k06w";
sha256 = "1ysc9g72yj63ygm915a316f1hcklmgswyrwsq5abwwj48001y01n";
};

installPhase = ''