Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-01-27 12:24:09 +00:00
committed by GitHub
93 changed files with 461 additions and 238 deletions
+3 -1
View File
@@ -79,7 +79,9 @@ let
# lsof must be in PATH for proper operation
wrapProgram $out/bin/Enpass \
--set LD_LIBRARY_PATH "${libPath}" \
--prefix PATH : ${lsof}/bin
--prefix PATH : ${lsof}/bin \
--unset QML2_IMPORT_PATH \
--unset QT_PLUGIN_PATH
'';
};
updater = {
+9 -8
View File
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "masscan";
version = "1.3.0";
version = "1.3.1";
src = fetchFromGitHub {
owner = "robertdavidgraham";
repo = "masscan";
rev = version;
sha256 = "04nlnficybgxa16kq9fwrrfjsbyiaps4mikfqgdr206fkqk9i05y";
owner = "robertdavidgraham";
repo = "masscan";
rev = version;
sha256 = "sha256-gH0zOf2kl6cqws1nB3QPtaAjpvNAgbawXRx77bqJTIc=";
};
nativeBuildInputs = [ makeWrapper ];
@@ -34,9 +34,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Fast scan of the Internet";
homepage = "https://github.com/robertdavidgraham/masscan";
license = licenses.agpl3;
platforms = platforms.unix;
homepage = "https://github.com/robertdavidgraham/masscan";
changelog = "https://github.com/robertdavidgraham/masscan/releases/tag/${version}";
license = licenses.agpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ rnhmjoj ];
};
}
@@ -1,4 +1,4 @@
{ stdenv, mkDerivation, fetchFromGitHub, pkg-config, gcc-arm-embedded, bluez5
{ lib, stdenv, mkDerivation, fetchFromGitHub, pkg-config, gcc-arm-embedded, bluez5
, readline
, hardwarePlatform ? "PM3RDV4"
@@ -29,7 +29,7 @@ mkDerivation rec {
install -Dt $out/firmware bootrom/obj/bootrom.elf armsrc/obj/fullimage.elf
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "Client for proxmark3, powerful general purpose RFID tool";
homepage = "https://rfidresearchgroup.com/";
license = licenses.gpl2Plus;
+1 -1
View File
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
passthru = {
tests.tor = nixosTests.tor;
updateScript = import ./update.nix {
inherit (stdenv) lib;
inherit lib;
inherit
writeScript
common-updater-scripts