Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-03-21 06:17:18 +00:00
committed by GitHub
144 changed files with 3925 additions and 1297 deletions
+10 -1
View File
@@ -1,4 +1,9 @@
{ lib, buildGoModule, fetchFromGitHub, openssh, makeWrapper }:
{ lib
, buildGoModule
, fetchFromGitHub
, openssh
, makeWrapper
}:
buildGoModule rec {
pname = "assh";
@@ -15,6 +20,10 @@ buildGoModule rec {
doCheck = false;
preBuild = ''
buildFlagsArray+=("-ldflags" "-s -w -X moul.io/assh/v2/pkg/version.Version=${version}")
'';
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
+1 -1
View File
@@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "The fastest and cross-platform subdomain enumerator";
homepage = "https://github.com/Edu4rdSHL/findomain";
license = licenses.gpl3;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ Br1ght0ne ];
};
}
+35
View File
@@ -0,0 +1,35 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "lychee";
version = "0.5.0";
src = fetchFromGitHub {
owner = "lycheeverse";
repo = pname;
rev = "v${version}";
sha256 = "03dsp0384mwr51dkqfl25xba0m17sppabiz7slhxcig89b0ksykm";
};
cargoSha256 = "08y2wpm2qgm2jsy257b2p2anxy4q3bj2kfdr5cnb6wnaz9g4ypq2";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
# Disabled because they currently fail
doCheck = false;
meta = with lib; {
description = "A fast, async, resource-friendly link checker written in Rust.";
homepage = "https://github.com/lycheeverse/lychee";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ tuxinaut ];
platforms = platforms.linux;
};
}
+7 -1
View File
@@ -8,6 +8,9 @@
}:
{ lib, stdenv
# This *is* correct, though unusual. as a way of getting krb5-config from the
# package without splicing See: https://github.com/NixOS/nixpkgs/pull/107606
, pkgs
, fetchurl
, fetchpatch
, zlib
@@ -42,7 +45,10 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ pkg-config ]
++ optional withKerberos kerberos
# This is not the same as the kerberos from the inputs! pkgs.kerberos is
# needed here to access krb5-config in order to cross compile. See:
# https://github.com/NixOS/nixpkgs/pull/107606
++ optional withKerberos pkgs.kerberos
++ extraNativeBuildInputs;
buildInputs = [ zlib openssl libedit ]
++ optional withFIDO libfido2
+1 -1
View File
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
description = "Mail sorter for Maildirs";
homepage = "http://philter.sourceforge.net";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
platforms = platforms.all;
license = licenses.gpl2;
};
+1 -1
View File
@@ -23,6 +23,6 @@ buildGoModule rec {
homepage = "https://github.com/danderson/netboot/tree/master/pixiecore";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bbigras danderson ];
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
}
+1 -1
View File
@@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/wiire/pixiewps";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.nico202 ];
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
};
}
+1 -1
View File
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/troglobit/redir";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
}
+1 -1
View File
@@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/kpcyrd/rshijack";
license = licenses.gpl3;
maintainers = with maintainers; [ xrelkd ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power";
homepage = "https://gitlab.com/surfraw/Surfraw";
maintainers = [];
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
license = lib.licenses.publicDomain;
};
}