summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-04-09 09:42:50 -0400
committerGitHub <noreply@github.com>2024-04-09 09:42:50 -0400
commitfe698eb2736fe32b980e7fb02d1c4ae6830ca492 (patch)
tree91fe6961b03cb1f4bf885bef9649a47432c6efd3
parent2030a5bd52a938857b77e0d437bffb90149f0965 (diff)
parentf2eb94071aa6beba0e6435809e6c68f6a77e0636 (diff)
Merge pull request #302792 from fabaff/exploitdb-bump
exploitdb: 2024-04-04 -> 2024-04-09
-rw-r--r--pkgs/tools/security/exploitdb/default.nix32
1 files changed, 19 insertions, 13 deletions
diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix
index 37b493c1f1e0..23d7ed0f8657 100644
--- a/pkgs/tools/security/exploitdb/default.nix
+++ b/pkgs/tools/security/exploitdb/default.nix
@@ -1,23 +1,22 @@
-{ lib
-, stdenv
-, fetchFromGitLab
-, makeWrapper
+{
+ lib,
+ stdenv,
+ fetchFromGitLab,
+ makeWrapper,
}:
stdenv.mkDerivation rec {
pname = "exploitdb";
- version = "2024-04-04";
+ version = "2024-04-09";
src = fetchFromGitLab {
owner = "exploit-database";
- repo = pname;
+ repo = "exploitdb";
rev = "refs/tags/${version}";
- hash = "sha256-qWmHY2CNZBY3kaWaru7jXJuPZOH96+Ea/8pUT0oKHF0=";
+ hash = "sha256-dNWApfe7Oxpm9SGX4L1lXpM2DUWXtLsg5RF+OkGlWcs=";
};
- nativeBuildInputs = [
- makeWrapper
- ];
+ nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
@@ -28,10 +27,17 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
- homepage = "https://gitlab.com/exploit-database/exploitdb";
description = "Archive of public exploits and corresponding vulnerable software";
- license = with licenses; [ gpl2Plus gpl3Plus mit ];
- maintainers = with maintainers; [ applePrincess fab ];
+ homepage = "https://gitlab.com/exploit-database/exploitdb";
+ license = with licenses; [
+ gpl2Plus
+ gpl3Plus
+ mit
+ ];
+ maintainers = with maintainers; [
+ applePrincess
+ fab
+ ];
mainProgram = "searchsploit";
platforms = platforms.unix;
};