Unverified Commit 2a4d49b5 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

gvm-libs: 22.35.0 -> 22.35.2 (#482214)

parents 35378fb4 339a8510
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -24,15 +24,15 @@
  zlib,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "gvm-libs";
  version = "22.35.0";
  version = "22.35.2";

  src = fetchFromGitHub {
    owner = "greenbone";
    repo = "gvm-libs";
    tag = "v${version}";
    hash = "sha256-3TWJyh9xzS/HLRjAc4hsBuu3P0SquHEZXjunWw1FqWU=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-DVYU+6hUps2nwgkTWu228wVYtke4oDFUqXM73DEN6LM=";
  };

  postPatch = ''
@@ -73,9 +73,9 @@ stdenv.mkDerivation rec {
  meta = {
    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/${src.tag}";
    license = with lib.licenses; [ gpl2Plus ];
    changelog = "https://github.com/greenbone/gvm-libs/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ fab ];
    platforms = lib.platforms.linux;
  };
}
})