mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 15:58:36 +00:00
Merge pull request #55870 from peterhoeg/f/zm
zoneminder: add some of the missing ONVIF dependencies
This commit is contained in:
commit
e913308b11
|
@ -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 ];
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue