Merge remote-tracking branch 'origin/master' into staging-next

Conflicts:
 pkgs/tools/networking/xh/default.nix
This commit is contained in:
Jonathan Ringer
2021-05-22 18:19:10 -07:00
157 changed files with 1479 additions and 591 deletions

View File

@@ -0,0 +1,29 @@
{ lib, stdenvNoCC, fetchFromGitHub, bash }:
stdenvNoCC.mkDerivation rec {
pname = "bfetch";
version = "unstable-2021-05-21";
src = fetchFromGitHub {
owner = "NNBnh";
repo = pname;
rev = "ef88e9d3f815e5074efc8ef4b7f32be6818130f2";
sha256 = "sha256-jS9zI8b+z3KbI+LeHFwIMJfEmAKSzO8HRZ2rk35hJCk=";
};
buildInputs = [ bash ];
postPatch = ''
patchShebangs --host bin/bfetch
'';
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A SuperB general-purpose fetch displayer written in portable sh";
homepage = "https://github.com/NNBnh/bfetch";
license = licenses.gpl3Only;
platforms = platforms.all;
maintainers = with maintainers; [ fortuneteller2k ];
};
}

View File

@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "fzf";
version = "0.27.0";
version = "0.27.1";
src = fetchFromGitHub {
owner = "junegunn";
repo = pname;
rev = version;
sha256 = "sha256-q0rAAD6du0WLcd46LUpkG3gBIvmtOE/foEMW5QCoIak=";
sha256 = "sha256-TMzyUhgOfcWXKhxy+2SeBy0mws/M+4YoitlPpYt6k9g=";
};
vendorSha256 = "sha256-FKDCIotyra/TZ48wbpzudJZ2aI2pn+ZR4EoZ+9+19Mw=";