laudanum: init at 1.0-unstable-2017-12-15

This commit is contained in:
D3vil0p3r 2024-02-16 21:33:35 +01:00 committed by D3vil0p3r
parent c16b73cd18
commit f3d8eed045
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation {
pname = "laudanum";
version = "1.0-unstable-2017-12-15";
src = fetchFromGitHub {
owner = "junk13";
repo = "laudanum";
rev = "50e1c09d5f23b446c20ecec652c64f9622348364";
hash = "sha256-Od/ciCQ5QM4b/u9nizHosj/zte2pdifO8IDZkrcmIeI=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/laudanum
cp -a * $out/share/laudanum/
runHook postInstall
'';
meta = with lib; {
description = "A collection of injectable files, designed to be used in a pentest when SQL injection flaws are found and are in multiple languages for different environments";
homepage = "https://github.com/junk13/laudanum";
maintainers = with maintainers; [ d3vil0p3r ];
platforms = platforms.all;
license = licenses.gpl2Plus;
};
}