mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
laudanum: init at 1.0-unstable-2017-12-15
This commit is contained in:
parent
c16b73cd18
commit
f3d8eed045
31
pkgs/by-name/la/laudanum/package.nix
Normal file
31
pkgs/by-name/la/laudanum/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue