sqlmap: 1.0.11 -> 1.1
Additionally disable sqlmap for python3 as it is incompatible: "[CRITICAL] incompatible Python version detected ('3.6.1'). For successfully running sqlmap you'll have to use version 2.6 or 2.7 (visit 'http://www.python.org/download/')"
This commit is contained in:
parent
47ec1bcb8c
commit
e573c4ad90
19
pkgs/applications/misc/sqlmap/default.nix
Normal file
19
pkgs/applications/misc/sqlmap/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, pythonPackages, pkgs }:
|
||||
|
||||
pythonPackages.buildPythonPackage {
|
||||
name = "sqlmap-1.1";
|
||||
|
||||
disabled = pythonPackages.isPy3k;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/sqlmap/sqlmap-1.1.tar.gz";
|
||||
sha256 = "0px72p52w76cylr68i69kz0kagmbrslgx2221yi77322fih0mngi";
|
||||
};
|
||||
|
||||
meta = with pkgs.stdenv.lib; {
|
||||
homepage = "http://sqlmap.org";
|
||||
license = licenses.gpl2;
|
||||
description = "Automatic SQL injection and database takeover tool";
|
||||
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
||||
};
|
||||
}
|
@ -4281,6 +4281,8 @@ with pkgs;
|
||||
|
||||
sqliteman = callPackage ../applications/misc/sqliteman { };
|
||||
|
||||
sqlmap = callPackage ../applications/misc/sqlmap { };
|
||||
|
||||
stdman = callPackage ../data/documentation/stdman { };
|
||||
|
||||
storebrowse = callPackage ../tools/system/storebrowse { };
|
||||
|
@ -21393,22 +21393,6 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
sqlmap = buildPythonPackage {
|
||||
name = "sqlmap-1.0.11";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/sqlmap/sqlmap-1.0.11.tar.gz";
|
||||
sha256 = "1x4amyjqnd9j5g2kp9nvg8pr5sqzbhr8gd0m6d671bshvgj568vr";
|
||||
};
|
||||
|
||||
meta = with pkgs.stdenv.lib; {
|
||||
homepage = "http://sqlmap.org";
|
||||
license = licenses.gpl2;
|
||||
description = "Automatic SQL injection and database takeover tool";
|
||||
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
||||
};
|
||||
};
|
||||
|
||||
pgpdump = self.buildPythonPackage rec {
|
||||
name = "pgpdump-1.5";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user