2013-10-03 06:35:34 -07:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libnet";
|
2015-03-11 16:21:23 -07:00
|
|
|
version = "1.2-rc3";
|
2013-10-03 06:35:34 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/libnet-dev/${pname}-${version}.tar.gz";
|
2015-03-11 16:21:23 -07:00
|
|
|
sha256 = "0qsapqa7dzq9f6lb19kzilif0pj82b64fjv5bq086hflb9w81hvj";
|
2013-10-03 06:35:34 -07:00
|
|
|
};
|
|
|
|
|
2017-10-30 14:25:05 -07:00
|
|
|
patches = [ ./fix-includes.patch ];
|
|
|
|
|
2015-03-11 16:21:23 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://github.com/sam-github/libnet;
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Portable framework for low-level network packet construction";
|
2015-03-11 16:21:23 -07:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
2013-10-03 06:35:34 -07:00
|
|
|
};
|
|
|
|
}
|