mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-24 02:00:41 +03:00
add nmap, commandline version only
svn path=/nixpkgs/trunk/; revision=1237
This commit is contained in:
parent
d45b352ba7
commit
2e2bcda7c2
2 changed files with 15 additions and 0 deletions
3
pkgs/tools/security/nmap/builder.sh
Normal file
3
pkgs/tools/security/nmap/builder.sh
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
. $stdenv/setup
|
||||||
|
|
||||||
|
genericBuild
|
12
pkgs/tools/security/nmap/default.nix
Normal file
12
pkgs/tools/security/nmap/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "nmap-3.55";
|
||||||
|
|
||||||
|
builder = ./builder.sh;
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://download.insecure.org/nmap/dist/nmap-3.55.tar.bz2;
|
||||||
|
md5 = "88b5f010f43b0e2ee0c2cfb468796aa9";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue