2016-01-02 19:34:20 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2006-08-15 14:22:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "netcat-gnu-0.7.1";
|
2016-01-02 19:34:20 +00:00
|
|
|
|
2006-08-15 14:22:45 +01:00
|
|
|
src = fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "mirror://sourceforge/netcat/netcat-0.7.1.tar.bz2";
|
2014-10-12 15:13:21 +01:00
|
|
|
sha256 = "1frjcdkhkpzk0f84hx6hmw5l0ynpmji8vcbaxg8h5k2svyxz0nmm";
|
2006-08-15 14:22:45 +01:00
|
|
|
};
|
2016-01-02 19:34:20 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Utility which reads and writes data across network connections";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://netcat.sourceforge.net/";
|
2016-01-02 19:34:20 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2016-01-02 19:34:20 +00:00
|
|
|
};
|
2006-08-15 14:22:45 +01:00
|
|
|
}
|