Merge branch 'staging-next' into staging

This commit is contained in:
Jan Tojnar
2021-03-04 22:16:45 +01:00
325 changed files with 4167 additions and 1748 deletions
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
description = "Wireless encryption cracking tools";
homepage = "http://www.aircrack-ng.org/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ domenkozar ];
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}
-1
View File
@@ -1,7 +1,6 @@
{ buildGoModule
, fetchFromGitHub
, lib
, stdenv
}:
buildGoModule rec {
+1 -1
View File
@@ -19,7 +19,7 @@ python2Packages.buildPythonApplication rec {
meta = {
description = "A program for retrieving mail";
maintainers = [ lib.maintainers.raskin lib.maintainers.domenkozar ];
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
homepage = "http://pyropus.ca/software/getmail/";
+1 -1
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python3Packages, lib }:
{ fetchFromGitHub, python3Packages, lib }:
python3Packages.buildPythonApplication rec {
pname = "getmail6";
+1 -1
View File
@@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
'';
platforms = [ "x86_64-linux" ];
license = licenses.asl20;
maintainers = [ maintainers.lukego maintainers.domenkozar ];
maintainers = [ maintainers.lukego ];
};
}
@@ -0,0 +1,36 @@
{ cmake
, fetchFromGitHub
, fping
, lib
, libowlevelzs
, net-snmp
, stdenv
}:
# TODO: add a services entry for the /etc/zs-apc-spdu.conf file
stdenv.mkDerivation rec {
pname = "zs-apc-spdu-ctl";
version = "0.0.2";
src = fetchFromGitHub {
owner = "zseri";
repo = "zs-apc-spdu-ctl";
rev = "v${version}";
sha256 = "TMV9ETWBVeXq6tZ2e0CrvHBXoyKfOLCQurjBdf/iw/M=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ fping libowlevelzs net-snmp ];
postPatch = ''
substituteInPlace src/confent.cxx \
--replace /usr/sbin/fping "${lib.makeBinPath [fping]}/fping"
'';
meta = with lib; {
description = "APC SPDU control utility";
license = licenses.mit;
maintainers = with maintainers; [ zseri ];
platforms = platforms.linux;
};
}