Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-03-29 00:15:53 +00:00
committed by GitHub
378 changed files with 3334 additions and 2031 deletions
@@ -86,6 +86,7 @@ mkDerivation rec {
with python3Packages; [
apsw
beautifulsoup4
cchardet
css-parser
cssselect
dateutil
+12 -1
View File
@@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "hugo";
@@ -21,6 +21,17 @@ buildGoModule rec {
subPackages = [ "." ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$out/bin/hugo gen man
installManPage man/*
installShellCompletion --cmd hugo \
--bash <($out/bin/hugo gen autocomplete --type=bash) \
--fish <($out/bin/hugo gen autocomplete --type=fish) \
--zsh <($out/bin/hugo gen autocomplete --type=zsh)
'';
meta = with lib; {
description = "A fast and modern static website engine";
homepage = "https://gohugo.io";
+2 -2
View File
@@ -8,12 +8,12 @@ with python3Packages;
buildPythonApplication rec {
pname = "vit";
version = "2.0.0";
version = "2.1.0";
disabled = lib.versionOlder python.version "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "5282d8076d9814d9248071aec8784cffbd968601542533ccb28ca61d1d08205e";
sha256 = "fd34f0b827953dfdecdc39f8416d41c50c24576c33a512a047a71c1263eb3e0f";
};
propagatedBuildInputs = [