Merge pull request #219769 from fabaff/gvm-libs-bump

gvm-libs: 21.4.4 -> 22.4.4
This commit is contained in:
Nick Cao
2023-03-06 10:44:54 +08:00
committed by GitHub
@@ -1,6 +1,7 @@
{ lib
, stdenv
, cmake
, doxygen
, fetchFromGitHub
, glib
, glib-networking
@@ -14,6 +15,7 @@
, libuuid
, libxcrypt
, libxml2
, paho-mqtt-c
, pkg-config
, zlib
, freeradius
@@ -21,17 +23,18 @@
stdenv.mkDerivation rec {
pname = "gvm-libs";
version = "21.4.4";
version = "22.4.4";
src = fetchFromGitHub {
owner = "greenbone";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Ps8J9JuLKcrowl9wgZ3Wm7JTXyiejQPDr4OV/IvDy+I=";
rev = "refs/tags/v${version}";
hash = "sha256-qsEIjoaq+iBl6iTdSXrxf7LYin/qiGtJ/LaD4bONbI0=";
};
nativeBuildInputs = [
cmake
doxygen
pkg-config
];
@@ -49,6 +52,7 @@ stdenv.mkDerivation rec {
libuuid
libxcrypt
libxml2
paho-mqtt-c
zlib
];
@@ -59,6 +63,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Libraries module for the Greenbone Vulnerability Management Solution";
homepage = "https://github.com/greenbone/gvm-libs";
changelog = "https://github.com/greenbone/gvm-libs/releases/tag/v${version}";
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ fab ];
platforms = platforms.linux;