summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2020-03-05 15:08:03 +0100
committerGitHub <noreply@github.com>2020-03-05 15:08:03 +0100
commit0e5d4573d4b408ba13711f2e3a48e1f3f4e043dc (patch)
treec1a0d06224fbc808fb2c048af53b355ba914df44
parentb18995ef1002e1047d33c83bd884160825ee5d0a (diff)
nix-bash-completions: 0.6.7 -> 0.6.8 (#81019)
-rw-r--r--pkgs/shells/bash/nix-bash-completions/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/bash/nix-bash-completions/default.nix b/pkgs/shells/bash/nix-bash-completions/default.nix
index affbd2199586..5dfd673a6298 100644
--- a/pkgs/shells/bash/nix-bash-completions/default.nix
+++ b/pkgs/shells/bash/nix-bash-completions/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "0.6.7";
+ version = "0.6.8";
pname = "nix-bash-completions";
src = fetchFromGitHub {
owner = "hedning";
repo = "nix-bash-completions";
rev = "v${version}";
- sha256 = "067j1gavpm9zv3vzw9gq0bi3bi0rjrijwprc1j016g44kvpq49qi";
+ sha256 = "1n5zs6xcnv4bv1hdaypmz7fv4j7dsr4a0ifah99iyj4p5j85i1bc";
};
# To enable lazy loading via. bash-completion we need a symlink to the script
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- homepage = https://github.com/hedning/nix-bash-completions;
+ homepage = "https://github.com/hedning/nix-bash-completions";
description = "Bash completions for Nix, NixOS, and NixOps";
license = licenses.bsd3;
platforms = platforms.all;