Fabian Affolter 2023-03-06 01:15:06 +01:00
parent 521fb3f6a6
commit a97d17a444

View File

@ -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 = "refs/tags/v${version}";
hash = "sha256-Ps8J9JuLKcrowl9wgZ3Wm7JTXyiejQPDr4OV/IvDy+I=";
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
];