Merge pull request #55870 from peterhoeg/f/zm

zoneminder: add some of the missing ONVIF dependencies
This commit is contained in:
Peter Hoeg 2019-03-18 11:29:04 +08:00 committed by GitHub
commit e913308b11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 2 deletions

View file

@ -142,9 +142,10 @@ in stdenv.mkDerivation rec {
curl ffmpeg glib libjpeg libselinux libsepol mp4v2 mysql pcre perl polkit x264 zlib
utillinuxMinimal # for libmount
] ++ (with perlPackages; [
# build-time dependencies
DateManip DBI DBDmysql LWP SysMmap
# runtime dependencies not checked at build-time
JSONMaybeXS LWPProtocolHttps NumberBytesHuman SysCPU SysMemInfo TimeDate
# run-time dependencies not checked at build-time
ClassStdFast DataDump JSONMaybeXS LWPProtocolHttps NumberBytesHuman SysCPU SysMemInfo TimeDate
]);
nativeBuildInputs = [ cmake makeWrapper pkgconfig ];

View file

@ -2185,6 +2185,22 @@ let
};
};
ClassStdFast = buildPerlModule rec {
name = "${pname}-${version}";
pname = "Class-Std-Fast";
version = "0.0.8";
src = fetchurl {
url = "mirror://cpan/authors/id/A/AC/ACID/${pname}-v${version}.tar.gz";
sha256 = "1057rz95jsr66gam472i4zdv04v7bmzph3m3jwq1hwx3qrikgm0v";
};
propagatedBuildInputs = [ ClassStd ];
checkInputs = [ TestPod TestPodCoverage ];
meta = with stdenv.lib; {
description = "Faster but less secure than Class::Std";
license = with licenses; [ artistic1 gpl1Plus ];
};
};
ClassUnload = buildPerlPackage rec {
name = "Class-Unload-0.11";
src = fetchurl {