gvm-libs: init at 21.4.1
This commit is contained in:
parent
82d19cb068
commit
f80b0fd0a8
2 changed files with 62 additions and 0 deletions
60
pkgs/development/libraries/gvm-libs/default.nix
Normal file
60
pkgs/development/libraries/gvm-libs/default.nix
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, cmake
|
||||||
|
, fetchFromGitHub
|
||||||
|
, glib
|
||||||
|
, glib-networking
|
||||||
|
, gnutls
|
||||||
|
, gpgme
|
||||||
|
, hiredis
|
||||||
|
, libgcrypt
|
||||||
|
, libnet
|
||||||
|
, libpcap
|
||||||
|
, libssh
|
||||||
|
, libuuid
|
||||||
|
, libxml2
|
||||||
|
, pkg-config
|
||||||
|
, zlib
|
||||||
|
, freeradius
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "gvm-libs";
|
||||||
|
version = "21.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "greenbone";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1ap3m7f1gyv9p96czi8mzryhjijgaqcbdyr8lwvnw8ynzskx8s3y";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
glib-networking
|
||||||
|
gnutls
|
||||||
|
gpgme
|
||||||
|
hiredis
|
||||||
|
libgcrypt
|
||||||
|
freeradius
|
||||||
|
libnet
|
||||||
|
libpcap
|
||||||
|
libssh
|
||||||
|
libuuid
|
||||||
|
libxml2
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Libraries module for the Greenbone Vulnerability Management Solution";
|
||||||
|
homepage = "https://github.com/greenbone/gvm-libs";
|
||||||
|
license = with licenses; [ gpl2Plus ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -16086,6 +16086,8 @@ with pkgs;
|
||||||
|
|
||||||
gvfs = callPackage ../development/libraries/gvfs { };
|
gvfs = callPackage ../development/libraries/gvfs { };
|
||||||
|
|
||||||
|
gvm-libs = callPackage ../development/libraries/gvm-libs { };
|
||||||
|
|
||||||
gwenhywfar = callPackage ../development/libraries/aqbanking/gwenhywfar.nix { };
|
gwenhywfar = callPackage ../development/libraries/aqbanking/gwenhywfar.nix { };
|
||||||
|
|
||||||
hamlib = hamlib_3;
|
hamlib = hamlib_3;
|
||||||
|
|
Loading…
Reference in a new issue