0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

Merge pull request #236484 from applePrincess/exploitdb-bump

exploitdb: 2023-06-05 -> 2023-06-07
This commit is contained in:
Weijia Wang 2023-06-08 00:17:41 +03:00 committed by GitHub
commit 12c75a0740
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "exploitdb";
version = "2023-06-05";
version = "2023-06-07";
src = fetchFromGitLab {
owner = "exploit-database";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-OhcYBct+ADyEk3VszQr/A+igB4mI/1BBedNzAfuHQ+k=";
hash = "sha256-1MWmIBPRwQtwkR0dR47RqgWyn3WhWy5eXzA/3pxf2MM=";
};
nativeBuildInputs = [
@ -33,5 +33,6 @@ stdenv.mkDerivation rec {
license = with licenses; [ gpl2Plus gpl3Plus mit ];
maintainers = with maintainers; [ applePrincess fab ];
mainProgram = "searchsploit";
platforms = platforms.unix;
};
}