2013-10-03 14:35:34 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libnet-${version}";
|
|
|
|
version = "1.2-rc2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libnet-dev/${name}.tar.gz";
|
|
|
|
sha256 = "1pc74p839a7wvhjdgy0scj7c4yarr6mqdqvj56k6sp8pkc763az7";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://github.com/sam-github/libnet;
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Portable framework for low-level network packet construction";
|
2013-10-03 14:35:34 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|