607b0d3e80
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
25 lines
542 B
Nix
25 lines
542 B
Nix
{stdenv, fetchurl, openssl}:
|
|
stdenv.mkDerivation {
|
|
name = "ncat-0.10rc3";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/nmap-ncat/ncat-0.10rc3.tar.gz;
|
|
sha256 = "1yb26ipxwhqkfannji90jxi38k35fal4ffx0jm5clr1a1rndjjzb";
|
|
};
|
|
|
|
patches = [./ncat-0.10rc3.patch ];
|
|
|
|
buildInputs = [openssl ];
|
|
|
|
CFLAGS = "-g";
|
|
|
|
postInstall = "install -D ncat \${out}/bin/ncat ;
|
|
install -D docs/man/ncat.1 \${out}/man/ncat.1 ;";
|
|
|
|
meta = {
|
|
description = "
|
|
Ncat - some effort to join features from different `netcat's. Supports IPv6.
|
|
";
|
|
};
|
|
}
|