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: 90f9d52b7386
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a474903bfd7
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 10, 2017

  1. Copy the full SHA
    6ab8d34 View commit details
  2. Copy the full SHA
    22aebcf View commit details
  3. Merge pull request #27271 from olejorgenb/nix-zsh-completions-update+fix

    Nix zsh completions update and add missing version to name
    Mic92 authored Jul 10, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    michaelpj Michael Peyton Jones
    Copy the full SHA
    0a47490 View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/shells/nix-zsh-completions/default.nix
10 changes: 7 additions & 3 deletions pkgs/shells/nix-zsh-completions/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{ stdenv, fetchFromGitHub }:

let
version = "0.3.1";
in

stdenv.mkDerivation rec {
name = "nix-zsh-completions";
name = "nix-zsh-completions-${version}";

src = fetchFromGitHub {
owner = "spwhitt";
repo = "nix-zsh-completions";
rev = "0.3";
sha256 = "1vwkd4nppjrvy6xb0vx4z73awrhaah1433dp6h4ghi3cdrrjn7ri";
rev = "${version}";
sha256 = "1sbc52f5818bcygljrji84dyvgw727x50m9v6qfrsdaji3zkqga1";
};

installPhase = ''