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

exploitdb: 2025-06-21 -> 2025-06-27 (#420472)

parents 40a8fd31 c28e2285
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -5,15 +5,15 @@
  makeWrapper,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "exploitdb";
  version = "2025-06-21";
  version = "2025-06-27";

  src = fetchFromGitLab {
    owner = "exploit-database";
    repo = "exploitdb";
    rev = "refs/tags/${version}";
    hash = "sha256-6mXku+SW6xmSYxd40Ilis8H/2Ozm6eUecLQHy1xeKtM=";
    tag = finalAttrs.version;
    hash = "sha256-Gm3SRdt6a3hSe64iP7j+5HQ5bGZ6s3eKvxFlCkQWZHo=";
  };

  nativeBuildInputs = [ makeWrapper ];
@@ -26,19 +26,19 @@ stdenv.mkDerivation rec {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Archive of public exploits and corresponding vulnerable software";
    homepage = "https://gitlab.com/exploit-database/exploitdb";
    license = with licenses; [
    license = with lib.licenses; [
      gpl2Plus
      gpl3Plus
      mit
    ];
    maintainers = with maintainers; [
    maintainers = with lib.maintainers; [
      applePrincess
      fab
    ];
    mainProgram = "searchsploit";
    platforms = platforms.unix;
    platforms = lib.platforms.unix;
  };
}
})