Merge pull request #310322 from r-ryantm/auto-update/bash-completion

bash-completion: 2.13.0 -> 2.14.0
This commit is contained in:
Sandro 2024-05-19 16:24:39 +02:00 committed by GitHub
commit b6a0d866b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,4 @@
{ lib, stdenv, fetchurl
, fetchpatch
, autoreconfHook
, perl
, ps
@ -9,15 +8,15 @@
stdenv.mkDerivation rec {
pname = "bash-completion";
version = "2.13.0";
version = "2.14.0";
# Using fetchurl because fetchGithub or fetchzip will have trouble on
# e.g. APFS filesystems (macOS) because of non UTF-8 characters in some of the
# test fixtures that are part of the repository.
# See discussion in https://github.com/NixOS/nixpkgs/issues/107768
src = fetchurl {
url = "https://github.com/scop/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-xfmaOeQPDRVMA/8VQ46H7OH1rGZjNqRFmJni/0vt89E=";
url = "https://github.com/scop/bash-completion/releases/download/${version}/bash-completion-${version}.tar.xz";
sha256 = "sha256-XHSU+WgoCDLWrbWqGfdFpW8aed8xHlkzjF76b3KF4Wg=";
};
strictDeps = true;